HomeSort by relevance Sort by last modified time
    Searched refs:arrayLength (Results 1 - 25 of 259) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/conscrypt/common/src/main/java/org/conscrypt/
ArrayUtils.java 27 * doesn't exceed {@code arrayLength}.
29 static void checkOffsetAndCount(int arrayLength, int offset, int count) {
30 if ((offset | count) < 0 || offset > arrayLength || arrayLength - offset < count) {
31 throw new ArrayIndexOutOfBoundsException("length=" + arrayLength + "; regionStart="
  /external/proguard/src/proguard/evaluation/value/
ArrayReferenceValue.java 34 protected final IntegerValue arrayLength;
42 IntegerValue arrayLength)
46 this.arrayLength = arrayLength;
52 public IntegerValue arrayLength(ValueFactory valueFactory)
54 return arrayLength;
98 this.arrayLength.generalize(other.arrayLength)) :
105 if (this.arrayLength.equal(other.arrayLength) == NEVER
    [all...]
DetailedValueFactory.java 38 IntegerValue arrayLength)
44 arrayLength,
IdentifiedArrayReferenceValue.java 42 IntegerValue arrayLength,
46 super(type, referencedClass, arrayLength);
IdentifiedValueFactory.java 82 IntegerValue arrayLength)
88 arrayLength,
DetailedArrayReferenceValue.java 46 IntegerValue arrayLength,
50 super(type, referencedClass, arrayLength, valuefactory, id);
53 if (arrayLength.isParticular() &&
54 arrayLength.value() <= MAXIMUM_STORED_ARRAY_LENGTH)
64 this.values = new Value[arrayLength.value()];
  /system/chre/apps/chqts/src/shared/
array_length.h 31 constexpr size_t arrayLength(T (&)[N]) { return N; }
nano_endian_test.cc 37 static_assert(arrayLength(bytes) == arrayLength(postSwap),
40 static_assert((kByteCount > 0) && (kByteCount <= arrayLength(bytes)),
44 postSwap + (arrayLength(postSwap) - kByteCount);
48 if (arrayLength(bytes) < kByteCount) {
nano_string_test.cc 40 uint8_t actual[arrayLength(expected)];
42 static_assert(kLenToSet <= arrayLength(expected), "Bad test invocation");
72 uint8_t expected[arrayLength(kMemcpySrc)];
73 uint8_t actual[arrayLength(expected)];
75 static_assert(kLenToCopy <= arrayLength(kMemcpySrc), "Bad test invocation");
116 char actual[arrayLength(expected)];
  /libcore/benchmarks/src/benchmarks/
SystemArrayCopyBenchmark.java 24 int arrayLength;
29 final int len = arrayLength;
38 final int len = arrayLength;
47 final int len = arrayLength;
56 final int len = arrayLength;
65 final int len = arrayLength;
74 final int len = arrayLength;
83 final int len = arrayLength;
92 final int len = arrayLength;
DeepArrayOpsBenchmark.java 25 @Param({"1", "4", "16", "256", "2048"}) int arrayLength;
34 array = new Object[arrayLength * 13];
35 array2 = new Object[arrayLength * 13];
36 for (int i = 0; i < arrayLength; i += 13) {
  /external/parameter-framework/upstream/parameter/
ParameterBlockType.cpp 57 size_t arrayLength = getArrayLength();
59 if (arrayLength) {
62 for (size_t child = 0; child < arrayLength; child++) {
ComponentInstance.cpp 123 size_t arrayLength = getArrayLength();
125 if (arrayLength != 0) {
128 for (size_t child = 0; child < arrayLength; child++) {
  /libcore/ojluni/src/main/java/java/lang/invoke/
MethodHandle.java     [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
WireFormatNano.java 113 int arrayLength = 1;
118 arrayLength++;
121 return arrayLength;
Extension.java 287 int arrayLength = Array.getLength(array);
288 for (int i = 0; i < arrayLength; i++) {
307 int arrayLength = Array.getLength(array);
308 for (int i = 0; i < arrayLength; i++) {
472 int arrayLength = Array.getLength(array);
480 for (int i = 0; i < arrayLength; i++) {
485 for (int i = 0; i < arrayLength; i++) {
490 for (int i = 0; i < arrayLength; i++) {
495 for (int i = 0; i < arrayLength; i++) {
500 for (int i = 0; i < arrayLength; i++)
    [all...]
  /frameworks/base/telephony/java/android/telephony/
IccOpenLogicalChannelResponse.java 66 int arrayLength = in.readInt();
67 if (arrayLength > 0) {
68 mSelectResponse = new byte[arrayLength];
  /external/deqp/external/openglcts/modules/common/
glcShaderLibraryCase.hpp 85 int arrayLength; // Number of elements in array (currently always 1).
86 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
91 int arrayLength; // Combined array length of each value (lengths must be same, or one).
95 arrayLength = 0;
  /frameworks/base/core/java/android/bluetooth/
SdpOppOpsRecord.java 76 int arrayLength = in.readInt();
77 if (arrayLength > 0) {
78 byte[] bytes = new byte[arrayLength];
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
ArrayCreatingInputMerger.java 125 int arrayLength = Array.getLength(array);
126 Object newArray = Array.newInstance(obj.getClass(), arrayLength + 1);
127 System.arraycopy(array, 0, newArray, 0, arrayLength);
128 Array.set(newArray, arrayLength, obj);
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 73 final int arrayLength = buffer.length;
74 Arrays.checkOffsetAndCount(arrayLength, offset, byteCount);
  /cts/tests/simplecpu/src/android/simplecpu/cts/
SimpleCpuTest.java 94 * @param arrayLength
96 private void doTestSort(int numberRepeat, int arrayLength) {
100 result[i] = CpuNative.runSort(arrayLength, numberRepeatInEachCall);
104 report.addValue("array_length", arrayLength, ResultType.NEUTRAL, ResultUnit.NONE);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
TypesLengths.java 104 private static int arrayLength;
165 return arrayLength;
254 arrayLength = typeLength;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayType/
NewInstanceTest.java 128 int arrayLength = reply.getNextValueAsInt();
129 logWriter.println("ArrayReference.Length: arrayLength=" + arrayLength);
131 10, arrayLength);
  /external/proguard/src/proguard/optimize/evaluation/
SimpleEnumArrayPropagator.java 69 array.referenceValue().arrayLength(

Completed in 468 milliseconds

1 2 3 4 5 6 7 8 91011