/external/clang/test/Index/Inputs/ |
cindex-from-source.h | 1 typedef int t0; typedef
|
/external/clang/test/Sema/ |
sign-conversion.c | 6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}} local 7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
|
short-enums.c | 6 int t0[sizeof(enum x) == 1 ? 1 : -1]; variable
|
fpack-struct.c | 9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1]; variable
|
/external/valgrind/main/none/tests/mips32/ |
LoadStore.c | 23 // sb $t0, 0($t1) 52 // swl $t0, 3($t1) 53 // swr $t0, 0($t1) 61 "swl $t0, 3($t1) \n\t" \ 62 "swr $t0, 0($t1) \n\t" \ 68 printf("swl $t0, 3($t1)\nswr $t0, 0($t1)\n :: RTval: 0x%x, out: 0x%x\n", \ 145 TESTINST1("sb $t0, 0($t1)", 0, 0, t0, t1); 146 TESTINST1("sb $t0, 0($t1)", 0x31415927, 0, t0, t1) [all...] |
LoadStore1.c | 23 // sb $t0, 0($t1) 52 // swl $t0, 3($t1) 53 // swr $t0, 0($t1) 61 "swl $t0, 3($t1) \n\t" \ 62 "swr $t0, 0($t1) \n\t" \ 68 printf("swl $t0, 3($t1)\nswr $t0, 0($t1)\n :: RTval: 0x%x, out: 0x%x\n", \ 145 TESTINST1("sb $t0, 3($t1)", 0, 3, t0, t1); 146 TESTINST1("sb $t0, 5($t1)", 0x31415927, 5, t0, t1) [all...] |
MIPS32int.c | 94 // load $t0, 0($t1) 100 "li $t0, " #RTval"\n\t" \ 116 "move $t0, %2\n\t" \ 117 "mthi $t0\n\t" \ 118 "addiu $t0, $t0, 0xffff\n\t" \ 119 "mtlo $t0\n\t" \ 133 TESTINST1("add $t0, $t1, $t2", 0, 0, t0, t1, t2); 134 TESTINST1("add $t0, $t1, $t2", 0, 1, t0, t1, t2) [all...] |
/external/valgrind/main/none/tests/mips64/ |
load_store_multiple.c | 51 /* swl $t0, 3($t1) 52 swr $t0, 0($t1) */ 60 "swl $t0, 3($t1)" "\n\t" \ 61 "swr $t0, 0($t1)" "\n\t" \ 67 printf("swl $t0, 3($t1)\nswr $t0, 0($t1)\n :: RTval: 0x%x, out: 0x%x\n", \ 140 TESTINST1("sb $t0, 3($t1)", 0, 3, t0, t1); 141 TESTINST1("sb $t0, 5($t1)", 0x31415927, 5, t0, t1) [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
levinson.c | 121 Word32 t0, t1, t2; /* temporary variable */ local 132 t0 = Div_32(t2, Rh[0], Rl[0]); /* R[1]/R[0] in Q31 */ 134 t0 = -t0; /* -R[1]/R[0] */ 136 Kh = t0 >> 16; 137 Kl = (t0 & 0xffff)>>1; 139 t0 = (t0 >> 4); /* A[1] in Q27 */ 141 Ah[1] = t0 >> 16; 142 Al[1] = (t0 & 0xffff)>>1 [all...] |
az_isp.c | 71 Word32 t0; local 89 t0 = a[i] << 15; 90 f1[i] = vo_round(t0 + (a[M - i] << 15)); /* =(a[i]+a[M-i])/2 */ 91 f2[i] = vo_round(t0 - (a[M - i] << 15)); /* =(a[i]-a[M-i])/2 */ 155 t0 = x * y; 156 t0 = (t0 >> (19 - exp)); 157 y = vo_extract_l(t0); /* y= (xhigh-xlow)/(yhigh-ylow) in Q11 */ 160 t0 = ylow * y; /* result in Q26 */ 161 t0 = (t0 >> 10); /* result in Q15 * 218 Word32 t0; local [all...] |
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/ |
copy.fail.cpp | 25 T t0(MoveOnly(2)); 27 t = t0;
|
copy.pass.cpp | 24 T t0; local 26 t = t0; 30 T t0(2); 32 t = t0; 37 T t0(2, 'a'); 39 t = t0; 45 const T t0(2, 'a', "some text"); 47 t = t0;
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
copy.fail.cpp | 25 T t0(MoveOnly(2)); 26 T t = t0;
|
move.pass.cpp | 25 T t0; local 26 T t = std::move(t0); 30 T t0(MoveOnly(0)); 31 T t = std::move(t0); 36 T t0(MoveOnly(0), MoveOnly(1)); 37 T t = std::move(t0); 43 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)); 44 T t = std::move(t0);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/ |
copy.fail.cpp | 25 T t0(MoveOnly(2)); 27 t = t0;
|
copy.pass.cpp | 24 T t0; local 26 t = t0; 30 T t0(2); 32 t = t0; 37 T t0(2, 'a'); 39 t = t0; 45 const T t0(2, 'a', "some text"); 47 t = t0;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
copy.fail.cpp | 25 T t0(MoveOnly(2)); 26 T t = t0;
|
move.pass.cpp | 25 T t0; local 26 T t = std::move(t0); 30 T t0(MoveOnly(0)); 31 T t = std::move(t0); 36 T t0(MoveOnly(0), MoveOnly(1)); 37 T t = std::move(t0); 43 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)); 44 T t = std::move(t0);
|
/frameworks/av/media/libstagefright/codecs/amrwb/src/ |
isp_az.cpp | 144 int32 t0; local 189 t0 = f1[i]; 191 t0 = fxp_mul32_by_16b(t0, isp[m - 1]) << 1; 193 f1[i] += t0; 211 t0 = add_int32(f1[i], f2[i]); /* f1[i] + f2[i] */ 212 /* compute t1 = abs(t0) */ 213 t1 = t0 - (t0 < 0); 218 a[i] = (int16)((t0 >> 12) + ((t0 >> 11) & 1)) 337 int32 t0; local 374 int32 t0; local [all...] |
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/ |
non_member_swap.pass.cpp | 26 T t0; local 28 swap(t0, t1); 32 T t0(MoveOnly(0)); 34 swap(t0, t1); 35 assert(std::get<0>(t0) == 1); 40 T t0(MoveOnly(0), MoveOnly(1)); 42 swap(t0, t1); 43 assert(std::get<0>(t0) == 2); 44 assert(std::get<1>(t0) == 3); 50 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)) [all...] |
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/ |
member_swap.pass.cpp | 25 T t0; local 27 t0.swap(t1); 31 T t0(MoveOnly(0)); 33 t0.swap(t1); 34 assert(std::get<0>(t0) == 1); 39 T t0(MoveOnly(0), MoveOnly(1)); 41 t0.swap(t1); 42 assert(std::get<0>(t0) == 2); 43 assert(std::get<1>(t0) == 3); 49 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)) [all...] |
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
levinson.cpp | 482 Word32 t0, t1, t2; // temporary variable 488 t0 = Div_32 (t2, Rh[0], Rl[0]); // R[1]/R[0] 490 t0 = L_negate (t0); // -R[1]/R[0] 491 L_Extract (t0, &Kh, &Kl); // K in DPF 493 rc[0] = pv_round (t0); 495 t0 = L_shr (t0, 4); // A[1] in 496 L_Extract (t0, &Ah[1], &Al[1]); // A[1] in DPF 500 t0 = Mpy_32 (Kh, Kl, Kh, Kl); // K* 654 register Word32 t0; \/* temporary variable *\/ local [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/ |
non_member_swap.pass.cpp | 26 T t0; local 28 swap(t0, t1); 32 T t0(MoveOnly(0)); 34 swap(t0, t1); 35 assert(std::get<0>(t0) == 1); 40 T t0(MoveOnly(0), MoveOnly(1)); 42 swap(t0, t1); 43 assert(std::get<0>(t0) == 2); 44 assert(std::get<1>(t0) == 3); 50 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/ |
member_swap.pass.cpp | 25 T t0; local 27 t0.swap(t1); 31 T t0(MoveOnly(0)); 33 t0.swap(t1); 34 assert(std::get<0>(t0) == 1); 39 T t0(MoveOnly(0), MoveOnly(1)); 41 t0.swap(t1); 42 assert(std::get<0>(t0) == 2); 43 assert(std::get<1>(t0) == 3); 49 T t0(MoveOnly(0), MoveOnly(1), MoveOnly(2)) [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/shaders/compiled/ |
passthroughps.h | 19 dcl t0.xy 21 texld r0, t0, s0
|