HomeSort by relevance Sort by last modified time
    Searched refs:array (Results 76 - 100 of 7929) sorted by null

1 2 34 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-tic6x/
attr-array-16-4.d 1 #name: C6X array attribute merging, 16 4
4 #source: attr-array-16.s
5 #source: attr-array-4.s
6 #error: .*requires more array alignment than .* preserves
attr-array-16-48.d 1 #name: C6X array attribute merging, 16 48
4 #source: attr-array-16.s
5 #source: attr-array-48.s
6 #error: .*requires more array alignment than .* preserves
attr-array-16-8.d 1 #name: C6X array attribute merging, 16 8
4 #source: attr-array-16.s
5 #source: attr-array-8.s
6 #error: .*requires more array alignment than .* preserves
attr-array-4-16.d 1 #name: C6X array attribute merging, 4 16
4 #source: attr-array-4.s
5 #source: attr-array-16.s
6 #error: .*requires more array alignment than .* preserves
attr-array-4-8.d 1 #name: C6X array attribute merging, 4 8
4 #source: attr-array-4.s
5 #source: attr-array-8.s
6 #error: .*requires more array alignment than .* preserves
attr-array-4-816.d 1 #name: C6X array attribute merging, 4 816
4 #source: attr-array-4.s
5 #source: attr-array-816.s
6 #error: .*requires more array alignment than .* preserves
attr-array-48-16.d 1 #name: C6X array attribute merging, 48 16
4 #source: attr-array-48.s
5 #source: attr-array-16.s
6 #error: .*requires more array alignment than .* preserves
attr-array-8-16.d 1 #name: C6X array attribute merging, 8 16
4 #source: attr-array-8.s
5 #source: attr-array-16.s
6 #error: .*requires more array alignment than .* preserves
attr-array-8-4.d 1 #name: C6X array attribute merging, 8 4
4 #source: attr-array-8.s
5 #source: attr-array-4.s
6 #error: .*requires more array alignment than .* preserves
attr-array-816-4.d 1 #name: C6X array attribute merging, 816 4
4 #source: attr-array-816.s
5 #source: attr-array-4.s
6 #error: .*requires more array alignment than .* preserves
  /frameworks/support/collection/ktx/src/test/java/androidx/collection/
SparseArrayTest.kt 29 val array = SparseArrayCompat<String>()
30 assertEquals(0, array.size)
31 array.put(1, "one")
32 assertEquals(1, array.size)
36 val array = SparseArrayCompat<String>()
37 assertFalse(1 in array)
38 array.put(1, "one")
39 assertTrue(1 in array)
43 val array = SparseArrayCompat<String>()
45 array.put(1, "one"
    [all...]
  /cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
RSUtils.java 45 * Fills the array with random doubles. Values will be between min (inclusive) and
48 public static void genRandomDoubles(long seed, double min, double max, double array[],
56 for (int i = 0; i < array.length; i++) {
64 array[i] = rand;
68 for (int i = 0; i < array.length; i++) {
70 array[i] = min + rand * (max - min);
77 array[r.nextInt(array.length)] = d;
80 array[r.nextInt(array.length)] = min
    [all...]
  /art/test/096-array-copy-concurrent-gc/src/
Main.java 22 * Size of array and amount of garbage created is based on experimental
45 Object [] array = new Object[10000]; field in class:Main
48 // We want many references in the array
54 for (int i = 0; i < array.length; i+=2) {
55 array[i] = new String("Creating some garbage" + i);
62 for (int j = 0; j < array.length; j++) {
63 Object obj = array[array.length - 1];
64 System.arraycopy(array, 0, array, 1, array.length - 1)
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
RSUtils.java 67 * Fills the array with random doubles. Values will be between min (inclusive) and
70 public static void genRandomDoubles(long seed, double min, double max, double array[],
78 for (int i = 0; i < array.length; i++) {
86 array[i] = rand;
90 for (int i = 0; i < array.length; i++) {
92 array[i] = min + rand * (max - min);
99 array[r.nextInt(array.length)] = d;
102 array[r.nextInt(array.length)] = min
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
USerializedSet.java 28 * @param src pointer to start of array
30 * @return true if the given array is valid, otherwise false
34 array=null;
55 array = new char[length];
56 System.arraycopy(src,srcStart,array,0,length);
72 array[0]=(char)c;
73 array[1]=(char)(c+1);
77 array[0]=0xffff;
78 array[1]=1;
79 array[2]=0
186 private char array[] = new char[8]; field in class:USerializedSet
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
USerializedSet.java 26 * @param src pointer to start of array
28 * @return true if the given array is valid, otherwise false
32 array=null;
53 array = new char[length];
54 System.arraycopy(src,srcStart,array,0,length);
70 array[0]=(char)c;
71 array[1]=(char)(c+1);
75 array[0]=0xffff;
76 array[1]=1;
77 array[2]=0
184 private char array[] = new char[8]; field in class:USerializedSet
    [all...]
  /art/test/456-baseline-array-set/src/
Main.java 24 Integer[] array = new Integer[2]; local
26 // allocator, generating code for the array set would fail on x86.
27 array[index] = array[index + 1];
28 array[index] = value;
  /external/clang/test/SemaCXX/
static-array-member.cpp 4 static int array[]; member in struct:X0
10 int X0::array[sizeof(X0) * 2]; member in class:X0
14 static T array[]; member in struct:X1
18 T X1<T, N>::array[N]; member in class:X1
warn-char-subscripts.cpp 5 int array[1] = { 0 }; local
7 int val = array[subscript]; // expected-warning{{array subscript is of type 'char'}}
12 int array[1] = { 0 }; local
14 int val = subscript[array]; // expected-warning{{array subscript is of type 'char'}}
  /external/google-benchmark/src/
arraysize.h 8 // The arraysize(arr) macro returns the # of elements in an array arr.
18 char (&ArraySizeHelper(T (&array)[N]))[N];
25 char (&ArraySizeHelper(const T (&array)[N]))[N];
28 #define arraysize(array) (sizeof(::benchmark::internal::ArraySizeHelper(array)))
  /external/libcxx/test/libcxx/containers/sequences/array/
version.pass.cpp 10 // <array>
12 #include <array>
  /external/libcxx/utils/google-benchmark/src/
arraysize.h 8 // The arraysize(arr) macro returns the # of elements in an array arr.
18 char (&ArraySizeHelper(T (&array)[N]))[N];
25 char (&ArraySizeHelper(const T (&array)[N]))[N];
28 #define arraysize(array) (sizeof(::benchmark::internal::ArraySizeHelper(array)))
  /libcore/luni/src/main/java/libcore/reflect/
ListOfVariables.java 23 final ArrayList<TypeVariable<?>> array = new ArrayList<TypeVariable<?>>(); field in class:ListOfVariables
26 array.add(elem);
30 TypeVariable<?>[] a = new TypeVariable[array.size()];
31 return array.toArray(a);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/array/
version.pass.cpp 10 // <array>
12 #include <array>
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/google-benchmark/src/
arraysize.h 8 // The arraysize(arr) macro returns the # of elements in an array arr.
18 char (&ArraySizeHelper(T (&array)[N]))[N];
25 char (&ArraySizeHelper(const T (&array)[N]))[N];
28 #define arraysize(array) (sizeof(::benchmark::internal::ArraySizeHelper(array)))

Completed in 1067 milliseconds

1 2 34 5 6 7 8 91011>>