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

1 2 3 4 56 7 8 91011>>

  /external/clang/test/CodeGen/
ms-inline-asm.c 306 int arr[2] = {0, 0};
308 __asm mov olen, LENGTH arr
310 __asm mov osize, SIZE arr
312 __asm mov otype, TYPE arr
387 int arr[4];
389 __asm { mov eax, 4[arr] }
391 __asm { mov eax, 4[arr + 4] }
393 __asm { mov eax, 8[arr + 4 + 32*2 - 4] }
395 __asm { mov eax, 12[4 + arr] }
397 __asm { mov eax, 4[4 + arr + 4]
    [all...]
captured-statements.c 54 int arr[] = {1, 2, 3, 4, 5}; local
58 arr[2] = vla_arr[size - 1];
  /dalvik/dx/tests/078-dex-local-variable-table/
Blort.java 24 Object[] arr = null; local
25 return arr[0];
42 int[] arr = (int[]) x; local
43 arr[0] = 123;
44 return arr[0];
  /ndk/tests/device/test-gnustl-full/unit/
bound_test.cpp 41 int arr[20]; local
44 arr[i] = i/4;
46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr;
  /ndk/tests/device/test-stlport/unit/
bound_test.cpp 41 int arr[20]; local
44 arr[i] = i/4;
46 int location = upper_bound((int*)arr, (int*)arr + 20, 3) - arr;
  /cts/common/device-side/device-info/tests/src/com/android/compatibility/common/deviceinfo/
TestDeviceInfo.java 77 int[] arr = new int[1001]; local
80 arr[i] = i;
83 addArray("max_num_ints", arr);
  /external/clang/test/Analysis/
Malloc+MismatchedDeallocator+NewDelete.cpp 102 int *arr = new int[4]; local
103 globalPtr = arr;
104 delete arr; // expected-warning{{Memory allocated by 'new[]' should be deallocated by 'delete[]', not 'delete'}}
  /external/clang/test/Sema/
block-args.c 55 void (^block)(array_ty) = ^(array_ty arr) { };
56 array_ty arr; local
57 block(arr);
ms-inline-asm.c 54 int t2(int *arr, int i) {
56 mov eax, arr; local
57 mov eax, arr[0]; local
58 mov eax, arr[1 + 2]; local
59 mov eax, arr[1 + (2 * 5) - 3 + 1<<1]; local
63 __asm { mov eax, arr[ebp + 1 + (2 * 5) - 3 + 1<<1] }
65 __asm { mov eax, arr[esi * 4] }
67 __asm { mov eax, arr[i] }
73 //__asm mov eax, [arr + i];
ms_wide_predefined_expr.cpp 9 static int arr[sizeof(STR2WSTR(__FUNCTION__))==12*sizeof(wchar_t) ? 1 : -1]; local
predef.c 5 static int arr[sizeof(__func__)==12 ? 1 : -1]; local
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
GenericAdapterTest.java 35 String[] arr = { "Hello", "World" }; local
36 List<String> list = Arrays.asList(arr);
38 getBinder().setArr(arr);
  /external/opencv/cxcore/src/
cxarray.cpp 98 CvMat* arr = 0; local
104 CV_CALL( arr = cvCreateMatHeader( height, width, type ));
105 CV_CALL( cvCreateData( arr ));
110 cvReleaseMat( &arr );
112 return arr;
116 static void icvCheckHuge( CvMat* arr )
118 if( (int64)arr->step*arr->rows > INT_MAX )
119 arr->type &= ~CV_MAT_CONT_FLAG;
126 CvMat* arr = 0 local
231 CvMat* arr = *array; local
337 CvMatND* arr = 0; local
359 CvMatND* arr = 0; local
504 const CvArr* arr = i < count ? arrs[i] : mask; local
641 CvSparseMat* arr = 0; local
711 CvSparseMat* arr = *array; local
    [all...]
cxrand.cpp 70 icvRandBits_##flavor##_C1R( arrtype* arr, int step, CvSize size, \
75 step /= sizeof(arr[0]); \
77 for( ; size.height--; arr += step ) \
92 arr[i] = cast_macro((int)t0); \
93 arr[i+1] = cast_macro((int)t1); \
99 arr[i+2] = cast_macro((int)t0); \
100 arr[i+3] = cast_macro((int)t1); \
119 arr[i] = cast_macro((int)t0); \
120 arr[i+1] = cast_macro((int)t1); \
124 arr[i+2] = cast_macro((int)t0);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/range/
as_literal.hpp 113 inline iterator_range<Char*> as_literal( Char (&arr)[sz] )
115 return range_detail::make_range( arr, range_detail::is_char_ptr(arr) );
119 inline iterator_range<const Char*> as_literal( const Char (&arr)[sz] )
121 return range_detail::make_range( arr, range_detail::is_char_ptr(arr) );
  /prebuilts/misc/common/swig/include/2.0.11/python/
carrays.i 15 NAME *arr = %new_instance(NAME);
16 arr->el = %new_array(nelements, TYPE);
17 return arr;
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.spec.auto/
p4.cpp 27 int arr[] = {1, 2, 3}; local
28 for (auto i : arr) {
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/
p3-0x.cpp 16 int arr[3] = {1,2,3}; local
18 for (struct S { S(int) {} } s : arr) { // expected-error {{types may not be defined in a for range declaration}}
  /external/clang/test/Parser/
brackets.cpp 128 static int arr[3]; member in struct:test6::A
130 int [3] ::test6::A::arr = {1,2,3}; member in class:test6::test6::A
132 // CHECK: {{^}}int [3] ::test6::A::arr = {1,2,3};
  /external/valgrind/exp-sgcheck/tests/
hsg.c 11 int addup_wrongly ( short* arr )
15 sum += (int)arr[i];
  /external/valgrind/coregrind/
m_xarray.c 46 void* arr; /* pointer to elements */ member in struct:_XArray
47 Word usedsizeE; /* # used elements in arr */
48 Word totsizeE; /* max size of arr, in elements */
77 xa->arr = NULL;
96 if (nyu->arr) {
104 nyu->arr = nyu->alloc_fn( nyu->cc, nyu->totsizeE * nyu->elemSzB );
105 VG_(memcpy)( nyu->arr, xa->arr, nyu->totsizeE * nyu->elemSzB );
115 if (xa->arr)
116 xa->free_fn(xa->arr);
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
StaticMetadataCollectionTest.java 122 private void dumpJsonArrayAsCtsResult(String name, JSONArray arr) throws Exception {
123 if (arr == null || arr.length() == 0) {
125 } else if (arr.get(0) instanceof JSONObject) {
126 for (int i = 0; i < arr.length(); i++) {
127 dumpJsonObjectAsCtsResult(name+String.format("[%04d]",i),(JSONObject)arr.get(i));
129 } else if (arr.get(0) instanceof JSONArray) {
130 for (int i = 0; i < arr.length(); i++) {
131 dumpJsonArrayAsCtsResult(name+String.format("[%04d]",i),(JSONArray)arr.get(i));
133 } else if (!(arr.get(0) instanceof String))
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/aget_object/
Test_aget_object.java 31 String[] arr = new String[] {"a", "b"}; local
32 assertEquals("a", t.run(arr, 0));
40 String[] arr = new String[] {"a", "b"}; local
41 assertEquals("b", t.run(arr, 1));
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p4-0x.cpp 7 int arr[sizeof(this)]; // expected-error {{invalid use of 'this' outside of a non-static member function}} member in struct:S
  /external/clang/test/SemaTemplate/
dependent-sized_array.cpp 26 S<0> arr[N] = {{ 4 }}; local

Completed in 1276 milliseconds

1 2 3 4 56 7 8 91011>>