Searched refs:t0 (Results 1 - 25 of 409) sorted by relevance

1234567891011>>

/external/clang/test/Index/Inputs/
H A Dcindex-from-source.h1 typedef int t0; typedef
/external/clang/test/Sema/
H A Dsign-conversion.c6 unsigned t0 = x; // expected-warning {{implicit conversion changes signedness}} local
7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}}
H A Dshort-enums.c6 int t0[sizeof(enum x) == 1 ? 1 : -1]; variable
H A Dfpack-struct.c9 int t0[sizeof(struct s0) == EXPECTED_STRUCT_SIZE ?: -1]; variable
/external/valgrind/none/tests/mips32/
H A DLoadStore.c23 // 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,
[all...]
H A DLoadStore1.c23 // 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,
[all...]
H A DMIPS32int.c94 // 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,
[all...]
H A DLoadStore.stdout.exp2 sb $t0, 0($t1) :: RTval: 0x0, out: 0x0
3 sb $t0, 0($t1) :: RTval: 0x0, out: 0x121f1e00
4 sb $t0, 0($t1) :: RTval: 0x31415927, out: 0x27
5 sb $t0, 0($t1) :: RTval: 0x31415927, out: 0x121f1e27
6 sb $t0, 0($t1) :: RTval: 0x7fffffff, out: 0xff
7 sb $t0, 0($t1) :: RTval: 0x7fffffff, out: 0x121f1eff
8 sb $t0, 0($t1) :: RTval: 0x80000000, out: 0x0
9 sb $t0, 0($t1) :: RTval: 0x80000000, out: 0x121f1e00
10 sb $t0, 2($t1) :: RTval: 0x80000000, out: 0x0
11 sb $t0,
[all...]
H A DLoadStore1.stdout.exp2 sb $t0, 3($t1) :: RTval: 0x0, out: 0x0
3 sb $t0, 3($t1) :: RTval: 0x0, out: 0x0
4 sb $t0, 5($t1) :: RTval: 0x31415927, out: 0x27000000
5 sb $t0, 5($t1) :: RTval: 0x31415927, out: 0x27000000
6 sb $t0, 7($t1) :: RTval: 0x7fffffff, out: 0xff000000
7 sb $t0, 7($t1) :: RTval: 0x7fffffff, out: 0xff000000
8 sb $t0, 1($t1) :: RTval: 0x80000000, out: 0x0
9 sb $t0, 1($t1) :: RTval: 0x80000000, out: 0x1e0000
10 sb $t0, 2($t1) :: RTval: 0x80000000, out: 0x27
11 sb $t0,
[all...]
/external/valgrind/none/tests/mips64/
H A Dload_store_multiple.c51 /* 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, t
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dcopy.fail.cpp27 T t0(MoveOnly(2));
29 t = t0;
H A Dcopy.pass.cpp26 T t0; local
28 t = t0;
32 T t0(2);
34 t = t0;
39 T t0(2, 'a');
41 t = t0;
47 const T t0(2, 'a', "some text");
49 t = t0;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
H A Dcopy.fail.cpp27 T t0(MoveOnly(2));
28 T t = t0;
H A Dcopy.pass.cpp28 T t0; local
29 T t = t0;
34 T t0(2);
35 T t = t0;
40 T t0(2, 'a');
41 T t = t0;
47 const T t0(2, 'a', "some text");
48 T t = t0;
56 constexpr T t0(2);
57 constexpr T t = t0;
62 constexpr T t0; local
[all...]
H A Dalloc_copy.pass.cpp30 T t0; local
31 T t(std::allocator_arg, A1<int>(), t0);
35 T t0(2);
36 T t(std::allocator_arg, A1<int>(), t0);
41 T t0(2);
43 T t(std::allocator_arg, A1<int>(5), t0);
49 T t0(2);
51 T t(std::allocator_arg, A1<int>(5), t0);
57 T t0(2, 3);
60 T t(std::allocator_arg, A1<int>(5), t0);
[all...]
H A Dalloc_move.pass.cpp31 T t0; local
32 T t(std::allocator_arg, A1<int>(), std::move(t0));
36 T t0(MoveOnly(0));
37 T t(std::allocator_arg, A1<int>(), std::move(t0));
42 T t0(1);
44 T t(std::allocator_arg, A1<int>(5), std::move(t0));
50 T t0(1);
52 T t(std::allocator_arg, A1<int>(5), std::move(t0));
58 T t0(0 ,1);
60 T t(std::allocator_arg, A1<int>(5), std::move(t0));
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.special/
H A Dnon_member_swap.pass.cpp28 T t0; local
30 swap(t0, t1);
34 T t0(MoveOnly(0));
36 swap(t0, t1);
37 assert(std::get<0>(t0) == 1);
42 T t0(MoveOnly(0), MoveOnly(1));
44 swap(t0, t1);
45 assert(std::get<0>(t0) == 2);
46 assert(std::get<1>(t0) == 3);
52 T t0(MoveOnl
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.swap/
H A Dmember_swap.pass.cpp27 T t0; local
29 t0.swap(t1);
33 T t0(MoveOnly(0));
35 t0.swap(t1);
36 assert(std::get<0>(t0) == 1);
41 T t0(MoveOnly(0), MoveOnly(1));
43 t0.swap(t1);
44 assert(std::get<0>(t0) == 2);
45 assert(std::get<1>(t0) == 3);
51 T t0(MoveOnl
[all...]
/external/aac/libAACenc/src/
H A Dbit_cnt.cpp116 INT t0,t1,t2,t3; local
127 t0= values[i+0];
134 bc1_2+=FDKaacEnc_huff_ltab1_2[t0+1][t1+1][t2+1][t3+1];
137 bc5_6+=FDKaacEnc_huff_ltab5_6[t0+4][t1+4];
140 t0=fixp_abs(t0);
146 bc3_4+= FDKaacEnc_huff_ltab3_4[t0][t1][t2][t3];
148 bc7_8+=FDKaacEnc_huff_ltab7_8[t0][t1];
151 bc9_10+=FDKaacEnc_huff_ltab9_10[t0][t1];
154 bc11+= (INT) FDKaacEnc_huff_ltab11[t0][t
192 INT t0,t1,t2,t3; local
263 INT t0,t1; local
318 INT t0,t1; local
368 INT t0,t1; local
415 INT t0,t1; local
456 INT t0,t1,t00,t01; local
548 INT i,t0,t1,t2,t3,t00,t01; local
782 INT i,t0,t1,t2,t3,t00,t01; local
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp5 Tuple<> *t0; variable
/external/clang/test/SemaTemplate/
H A Dtemplate-decl-fail.cpp6 enum t0 { A = T::x }; // expected-error{{enumeration cannot be a template}} \ enum
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.member/
H A Ddetach.pass.cpp48 std::thread t0((G()));
49 assert(t0.joinable());
50 t0.detach();
51 assert(!t0.joinable());
H A Djoin.pass.cpp48 std::thread t0((G()));
49 assert(t0.joinable());
50 t0.join();
51 assert(!t0.joinable());
H A Djoinable.pass.cpp48 std::thread t0((G()));
49 assert(t0.joinable());
50 t0.join();
51 assert(!t0.joinable());
/external/openssh/
H A Dsmult_curve25519_ref.c190 unsigned int t0[32]; local
196 /* 8 */ square(t0,t1);
197 /* 9 */ mult(z9,t0,z);
199 /* 22 */ square(t0,z11);
200 /* 2^5 - 2^0 = 31 */ mult(z2_5_0,t0,z9);
202 /* 2^6 - 2^1 */ square(t0,z2_5_0);
203 /* 2^7 - 2^2 */ square(t1,t0);
204 /* 2^8 - 2^3 */ square(t0,t1);
205 /* 2^9 - 2^4 */ square(t1,t0);
206 /* 2^10 - 2^5 */ square(t0,t
[all...]

Completed in 588 milliseconds

1234567891011>>