HomeSort by relevance Sort by last modified time
    Searched refs:t0 (Results 1 - 25 of 745) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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
attr-naked.c 5 __attribute__((naked)) int t0(void) { function
  /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);
copy.pass.cpp 26 T t0; local
27 T t = t0;
31 T t0(2);
32 T t = t0;
37 T t0(2, 'a');
38 T t = t0;
44 const T t0(2, 'a', "some text");
45 T t = t0;
53 constexpr T t0(2);
54 constexpr T t = t0;
59 constexpr T t0; local
    [all...]
alloc_copy.pass.cpp 28 T t0; local
29 T t(std::allocator_arg, A1<int>(), t0);
33 T t0(2);
34 T t(std::allocator_arg, A1<int>(), t0);
39 T t0(2);
41 T t(std::allocator_arg, A1<int>(5), t0);
47 T t0(2);
49 T t(std::allocator_arg, A1<int>(5), t0);
55 T t0(2, 3);
58 T t(std::allocator_arg, A1<int>(5), t0);
    [all...]
alloc_move.pass.cpp 29 T t0; local
30 T t(std::allocator_arg, A1<int>(), std::move(t0));
34 T t0(MoveOnly(0));
35 T t(std::allocator_arg, A1<int>(), std::move(t0));
40 T t0(1);
42 T t(std::allocator_arg, A1<int>(5), std::move(t0));
48 T t0(1);
50 T t(std::allocator_arg, A1<int>(5), std::move(t0));
56 T t0(0 ,1);
58 T t(std::allocator_arg, A1<int>(5), std::move(t0));
    [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...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/shaders/compiled/
passthroughps.h 19 dcl t0.xy
21 texld r0, t0, s0
  /external/aac/libAACenc/src/
bit_cnt.cpp 116 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][t1]
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...]
  /art/runtime/arch/mips/
memcmp16_mips.S 24 li $t0,0
30 1: lhu $t0,0($a0)
33 bne $t0,$t1,done
39 subu $v0,$t0,$t1
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p1.cpp 5 Tuple<> *t0; variable
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
detach.pass.cpp 46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.detach();
49 assert(!t0.joinable());
join.pass.cpp 46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.join();
49 assert(!t0.joinable());
joinable.pass.cpp 46 std::thread t0((G()));
47 assert(t0.joinable());
48 t0.join();
49 assert(!t0.joinable());
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/shaders/compiled/
buffertotexture11_ps_4f.h 49 dcl_resource_buffer (float,float,float,float) t0
52 ld o0.xyzw, v1.xxxx, t0.xyzw
buffertotexture11_ps_4i.h 30 dcl_resource_buffer (sint,sint,sint,sint) t0
33 ld o0.xyzw, v1.xxxx, t0.xyzw
buffertotexture11_ps_4ui.h 30 dcl_resource_buffer (uint,uint,uint,uint) t0
33 ld o0.xyzw, v1.xxxx, t0.xyzw
passthroughdepth2d11ps.h 32 dcl_resource_texture2d (float,float,float,float) t0
36 sample r0.xyzw, v1.xyxx, t0.xyzw, s0

Completed in 379 milliseconds

1 2 3 4 5 6 7 8 91011>>