HomeSort by relevance Sort by last modified time
    Searched full:arraylength (Results 1 - 25 of 285) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/609-checker-x86-bounds-check/
info.txt 1 Checker test that we combine ArrayLength and BoundsCheck on x86/x86_64.
  /external/r8/src/main/java/com/android/tools/r8/code/
ArrayLength.java 8 public class ArrayLength extends Format12x {
11 public static final String NAME = "ArrayLength";
14 ArrayLength(int high, BytecodeStream stream) {
18 public ArrayLength(int dest, int array) {
  /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,
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()];
  /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="
  /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/r8/src/main/java/com/android/tools/r8/ir/code/
ArrayLength.java 11 public class ArrayLength extends Instruction {
13 public ArrayLength(Value dest, Value array) {
31 public ArrayLength asArrayLength() {
39 builder.add(this, new com.android.tools.r8.code.ArrayLength(dest, array));
  /system/chre/apps/chqts/src/shared/
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)];
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
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...]
  /art/compiler/optimizing/
x86_memory_gen.cc 38 // We only want to replace an ArrayLength.
61 // Can we suppress the ArrayLength and generate at BoundCheck?
64 // We need the ArrayLength just before the BoundsCheck.
  /external/parameter-framework/upstream/parameter/
ParameterBlockType.cpp 57 size_t arrayLength = getArrayLength();
59 if (arrayLength) {
62 for (size_t child = 0; child < arrayLength; child++) {
  /frameworks/base/core/java/android/bluetooth/
SdpOppOpsRecord.java 75 int arrayLength = in.readInt();
76 if(arrayLength > 0) {
77 byte[] bytes = new byte[arrayLength];
  /frameworks/base/telephony/java/android/telephony/
IccOpenLogicalChannelResponse.java 66 int arrayLength = in.readInt();
67 if (arrayLength > 0) {
68 mSelectResponse = new byte[arrayLength];
  /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);
  /dalvik/dx/tests/106-verify-object-ops/
op_arraylength.j 23 arraylength
  /device/linaro/bootloader/edk2/UefiCpuPkg/Include/
CpuHotPlugData.h 22 UINT32 ArrayLength; // The entries number of the following ApicId array and SmBase array
  /external/parameter-framework/upstream/test/xml-generator/PFConfig/
structure.xml 17 <ParameterBlock Name="block" ArrayLength="5">
  /frameworks/base/core/java/android/content/pm/
LimitedLengthInputStream.java 73 final int arrayLength = buffer.length;
74 Arrays.checkOffsetAndCount(arrayLength, offset, byteCount);
  /art/test/609-checker-x86-bounds-check/src/
Main.java 31 /// CHECK-DAG: <<Length:i\d+>> ArrayLength [<<CheckedArray>>] is_string_length:false loop:none
40 /// CHECK-DAG: <<Length:i\d+>> ArrayLength [<<CheckedArray>>] is_string_length:false emitted_at_use:true loop:none
49 /// CHECK-NEXT: <<Length:i\d+>> ArrayLength [<<Array>>] is_string_length:false emitted_at_use:true loop:none
60 /// CHECK-DAG: <<Length:i\d+>> ArrayLength [<<CheckedArray>>] is_string_length:false loop:none
69 /// CHECK-DAG: <<Length:i\d+>> ArrayLength [<<CheckedArray>>] is_string_length:false emitted_at_use:true loop:none
79 /// CHECK-NEXT: <<Length:i\d+>> ArrayLength [<<Array>>] is_string_length:false emitted_at_use:true loop:none
  /art/test/625-checker-licm-regressions/src/
Main.java 33 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
39 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
58 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
64 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
82 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
86 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
  /art/test/445-checker-licm/src/
Main.java 90 /// CHECK-START: int Main.arrayLength(int[]) licm (before)
92 /// CHECK-DAG: ArrayLength [<<NullCheck>>] loop:{{B\d+}}
94 /// CHECK-START: int Main.arrayLength(int[]) licm (after)
96 /// CHECK-NOT: ArrayLength loop:{{B\d+}}
98 /// CHECK-START: int Main.arrayLength(int[]) licm (after)
100 /// CHECK-DAG: ArrayLength [<<NullCheck>>] loop:none
102 public static int arrayLength(int[] array) {
176 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
189 /// CHECK-DAG: ArrayLength loop:<<Loop>> outer_loop:none
215 assertEquals(12, arrayLength(new int[] { 4, 8 }))
    [all...]

Completed in 733 milliseconds

1 2 3 4 5 6 7 8 91011>>