/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/ |
merge_comp.pass.cpp | 24 int a2[] = {11, 8, 6, 5, 4, 2, 0}; local 27 std::list<int> c2(a2, a2+sizeof(a2)/sizeof(a2[0])); 34 int a2[] = {11, 8, 6, 5, 4, 2, 0}; local 37 std::list<int, min_allocator<int>> c2(a2, a2+sizeof(a2)/sizeof(a2[0])) [all...] |
remove_if.pass.cpp | 29 int a2[] = {3, 4}; local 32 assert(c == std::list<int>(a2, a2+2)); 37 int a2[] = {3, 4}; local 40 assert((c == std::list<int, min_allocator<int>>(a2, a2+2)));
|
unique_pred.pass.cpp | 28 int a2[] = {2, 1, 4, 3}; local 31 assert(c == std::list<int>(a2, a2+4)); 36 int a2[] = {2, 1, 4, 3}; local 39 assert((c == std::list<int, min_allocator<int>>(a2, a2+4)));
|
/dalvik/vm/mterp/mips/ |
OP_INVOKE_SUPER_QUICK.S | 12 LOAD_rSELF_method(a2) # a2 <- current method 17 LOAD_base_offMethod_clazz(a2, a2) # a2 <- method->clazz 19 LOAD_base_offClassObject_super(a2, a2) # a2 <- method->clazz->super 21 LOAD_base_offClassObject_vtable(a2, a2) # a2 <- ...clazz->super->vtabl [all...] |
OP_LONG_TO_INT.S | 8 GET_VREG(a2, a1) # a2 <- fp[B] 10 SET_VREG_GOTO(a2, a0, t0) # fp[A] <- a2
|
OP_MOVE.S | 7 GET_VREG(a2, a1) # a2 <- fp[B] 9 SET_VREG_GOTO(a2, a0, t0) # fp[A] <- a2
|
OP_MOVE_16.S | 7 GET_VREG(a2, a1) # a2 <- fp[BBBB] 9 SET_VREG_GOTO(a2, a0, t0) # fp[AAAA] <- a2 and jump
|
OP_MOVE_FROM16.S | 7 GET_VREG(a2, a1) # a2 <- fp[BBBB] 9 SET_VREG_GOTO(a2, a0, t0) # fp[AA] <- a2
|
/external/clang/test/CXX/expr/ |
p8.cpp | 6 int a2[16]; variable 17 f1(a2);
|
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
memcmp_test.cc | 9 char a2[] = {1, 2*argc, 3, 4}; local 10 int res = memcmp(a1, a2, 4 + argc); // BOOM
|
/external/valgrind/main/drd/ |
drd_suppression.c | 62 void DRD_(start_suppression)(const Addr a1, const Addr a2, 67 a1, a2 - a1, reason); 69 tl_assert(a1 <= a2); 70 DRD_(bm_access_range_store)(s_suppressed, a1, a2); 73 void DRD_(finish_suppression)(const Addr a1, const Addr a2) 77 a1, a2 - a1); 81 tl_assert(a1 <= a2); 82 DRD_(bm_clear_store)(s_suppressed, a1, a2); 87 * bytes in the range a1 .. a2 - 1 inclusive. Return false in case the range 90 Bool DRD_(is_suppressed)(const Addr a1, const Addr a2) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.function.objects/depr.adaptors/depr.member.pointer.adaptors/ |
mem_fun1.pass.cpp | 22 short a2(int i) {return short(i+1);} function in struct:A 30 assert(std::mem_fun(&A::a2)(&a, 5) == 6);
|
mem_fun_ref1.pass.cpp | 22 short a2(int i) {return short(i+1);} function in struct:A 30 assert(std::mem_fun_ref(&A::a2)(a, 5) == 6);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.comparison/ |
and_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N); 36 T a2[] = {1, 2, 3, 4, 0}; local 38 const unsigned N = sizeof(a2)/sizeof(a2[0]); 39 std::valarray<T> v2(a2, N);
|
or_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N); 36 T a2[] = {1, 2, 3, 4, 0}; local 38 const unsigned N = sizeof(a2)/sizeof(a2[0]); 39 std::valarray<T> v2(a2, N);
|
equal_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
greater_equal_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
greater_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
less_equal_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
less_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
not_equal_value_valarray.pass.cpp | 25 T a2[] = {1, 2, 3, 4, 0}; local 27 const unsigned N = sizeof(a2)/sizeof(a2[0]); 28 std::valarray<T> v2(a2, N);
|
/system/core/libcutils/tests/memset_mips/ |
android_memset_dumb.S | 7 beqz $a2,9f 8 srl $a2,1 11 subu $a2,1 12 bnez $a2,1b 25 beqz $a2,9f 26 srl $a2,2 29 subu $a2,1 30 bnez $a2,1b
|
/external/clang/test/CodeGenCXX/ |
global-dtor-no-atexit.cpp | 43 static A a1, a2; local
|
/dalvik/vm/compiler/template/mips/ |
TEMPLATE_SHL_LONG.S | 7 /* shl-long vAA:vBB(rARG1:rARG0), vCC(a2) - result in (rRESULT1:rRESULT0) */ 8 sll rRESULT0, rARG0, a2 # rlo<- alo << (shift&31) 9 not rRESULT1, a2 # rhi<- 31-shift (shift is 5b) 12 sll rRESULT1, rARG1, a2 # rhi<- ahi << (shift&31) 14 andi a2, 0x20 # shift< shift & 0x20 15 movn rRESULT1, rRESULT0, a2 # rhi<- rlo (if shift&0x20) 16 movn rRESULT0, zero, a2 # rlo<- 0 (if shift&0x20)
|
TEMPLATE_USHR_LONG.S | 7 /* ushr-long vAA:vBB(rARG1:rARG0), vCC(a2) - result in (rRESULT1:rRESULT0) */ 8 srl rRESULT1, rARG1, a2 # rhi<- ahi >> (shift&31) 9 srl rRESULT0, rARG0, a2 # rlo<- alo >> (shift&31) 10 not rARG0, a2 # alo<- 31-n (shift is 5b) 14 andi a2, 0x20 # shift & 0x20 15 movn rRESULT0, rRESULT1, a2 # rlo<- rhi (if shift&0x20) 16 movn rRESULT1, zero, a2 # rhi<- 0 (if shift&0x20)
|