HomeSort by relevance Sort by last modified time
    Searched refs:arr (Results 51 - 75 of 740) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaTemplate/
overloaded-functions.cpp 9 int arr[size]; local
10 // expected-error@-1 {{'arr' declared as an array with a negative size}}
24 int arr[size]; local
25 // expected-error@-1 {{'arr' declared as an array with a negative size}}
  /external/compiler-rt/test/lsan/TestCases/
use_unaligned.cc 11 void *arr[2]; variable
16 char *char_arr = (char *)arr;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
tuple_array_template_depth.pass.cpp 31 array_t arr; local
33 tup = arr;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
tuple_array_template_depth.pass.cpp 34 array_t arr; local
35 tuple_t tup(arr);
  /external/valgrind/perf/
heap.c 8 char* arr[NLIVE]; variable
22 arr[i] = NULL;
29 if (arr[j])
30 free(arr[j]);
31 arr[j] = malloc(nbytes);
33 // create some partially defined bytes in arr[j]
35 arr[j][jpdb] &= (jpdb & 0xff);
47 if (arr[i])
48 free(arr[i]);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget/d/
T_aget_8.java 20 public int run(int[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_boolean/d/
T_aget_boolean_8.java 20 public boolean run(boolean[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_byte/d/
T_aget_byte_8.java 20 public byte run(byte[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_char/d/
T_aget_char_8.java 20 public char run(char[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_short/d/
T_aget_short_8.java 20 public short run(short[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_wide/d/
T_aget_wide_10.java 21 public long run(long[] arr, float idx) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput/d/
T_aput_8.java 20 public void run(int[] arr, float idx, float value) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_boolean/d/
T_aput_boolean_8.java 20 public void run(boolean[] arr, float idx, boolean value) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_byte/d/
T_aput_byte_8.java 20 public void run(byte[] arr, float idx, byte value) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_char/d/
T_aput_char_8.java 20 public void run(char[] arr, float idx, char value) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_short/d/
T_aput_short_8.java 20 public void run(short[] arr, float idx, short value) {
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aput_wide/d/
T_aput_wide_6.java 21 public void run(double[] arr, int idx, long value) {
T_aput_wide_9.java 21 public void run(long[] arr, float idx, long value) {
  /external/smali/util/src/main/java/org/jf/util/
StringWrapper.java 83 private static String[] addString(@Nonnull String[] arr, String str, int index) {
84 if (index >= arr.length) {
85 arr = enlargeArray(arr, (int)(Math.ceil((arr.length + 1) * 1.5)));
88 arr[index] = str;
89 return arr;
92 private static String[] addString(@Nonnull String[] arr, String str, int index, int newLength) {
93 if (index >= arr.length) {
94 arr = enlargeArray(arr, newLength)
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/fill_array_data/
Test_fill_array_data.java 29 int arr[] = new int[5]; local
31 t.run(arr);
33 assertEquals(i + 1, arr[i]);
40 double arr[] = new double[5]; local
42 t.run(arr);
44 assertEquals((double)(i + 1), arr[i]);
52 int arr[] = new int[10]; local
54 t.run(arr);
56 assertEquals(i + 1, arr[i]);
58 assertEquals(0, arr[i])
77 int arr[] = new int[2]; local
    [all...]
  /external/clang/test/CoverageMapping/
macroparams2.c 11 struct S arr[32] = { 0 }; local
15 if (MACRO(arr[n].j, arr[n].i)) {
  /external/compiler-rt/test/asan/TestCases/
use-after-scope-inlined.cc 8 int *arr; variable
14 arr = x;
19 return arr[argc - 1]; // BOOM
  /external/valgrind/memcheck/tests/linux/
lsframe1.c 17 int arr[N_INTS]; local
20 arr[i] = i;
23 sum += arr[i];
  /external/valgrind/memcheck/tests/
sh-mem-random.c 70 void check(U1* arr, int n, char* who)
76 (void)VALGRIND_GET_VBITS(arr, shadow, n);
78 arr_i = make_defined(arr[i]);
82 who, i, shadow[i], arr[i]);
109 void do_test_at ( U1* arr )
115 /* Fill arr with random bytes whose shadows match them. */
116 if (0) printf("-------- arr = %p\n", arr);
120 arr[i] = (U1)build(1, randomU1());
123 check(arr, N_BYTES, "after initialisation")
217 U1* arr; local
    [all...]
origin6-fp.c 35 double** do3x3smooth ( double** arr, int nArr )
44 double s = arr[i-1][j-1] + arr[i-1][j ] + arr[i-1][j+1]
45 + arr[i ][j-1] + arr[i ][j ] + arr[i ][j+1]
46 + arr[i+1][j-1] + arr[i+1][j ] + arr[i+1][j+1]
85 double r, **arr, **arr2, **arr3; local
    [all...]

Completed in 783 milliseconds

1 23 4 5 6 7 8 91011>>