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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
attr-noinline.c 4 void t1() __attribute__((noinline));
6 void t1() function
attr-naked.c 3 void t1() __attribute__((naked));
7 // CHECK: define void @t1() [[NAKED:#[0-9]+]] {
8 void t1() function
attr-nodebug.c 4 void t1() __attribute__((nodebug));
6 void t1() function
arm-inline-asm.c 4 void t1 (void *f, int g) { function
2006-01-16-BitCountIntrinsicsUnsigned.c 8 int t1(int X) { function
9 // CHECK: t1
arm-asm.c 3 int t1() { function
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/type.index/type.index.members/
lt.pass.cpp 24 std::type_index t1 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
31 if (t1 < t3)
33 assert( (t1 < t3));
34 assert( (t1 <= t3));
35 assert(!(t1 > t3));
36 assert(!(t1 >= t3))
    [all...]
ctor.pass.cpp 21 std::type_index t1 = typeid(int); local
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 21 std::type_index t1(typeid(int));
22 std::type_index t2 = t1;
23 assert(t2 == t1);
copy_assign.pass.cpp 21 std::type_index t1(typeid(int));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
  /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)
99 "move $t1, %1\n\t" \
133 TESTINST1("add $t0, $t1, $t2", 0, 0, t0, t1, t2);
134 TESTINST1("add $t0, $t1, $t2", 0, 1, t0, t1, t2);
135 TESTINST1("add $t0, $t1, $t2", 1, 0, t0, t1, t2);
136 TESTINST1("add $t0, $t1, $t2", 1, 1, t0, t1, t2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 38 typedef std::chrono::time_point<Clock, Duration1> T1;
42 T1 t1(Duration1(3));
43 T1 t2(Duration1(3));
44 assert(!(t1 < t2));
45 assert(!(t1 > t2));
46 assert( (t1 <= t2));
47 assert( (t1 >= t2));
50 T1 t1(Duration1(3))
    [all...]
op_equal.pass.cpp 30 typedef std::chrono::time_point<Clock, Duration1> T1;
34 T1 t1(Duration1(3));
35 T1 t2(Duration1(3));
36 assert( (t1 == t2));
37 assert(!(t1 != t2));
40 T1 t1(Duration1(3));
41 T1 t2(Duration1(4));
42 assert(!(t1 == t2))
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 37 typedef std::tuple<> T1;
39 const T1 t1; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
47 typedef std::tuple<char> T1;
49 const T1 t1(1)
    [all...]
eq.pass.cpp 25 typedef std::tuple<> T1;
27 const T1 t1; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
33 typedef std::tuple<int> T1;
35 const T1 t1(1);
37 assert(!(t1 == t2));
38 assert(t1 != t2)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/type.index/type.index.hash/
hash.pass.cpp 26 std::type_index t1 = typeid(int); local
27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.rtti/type.info/
type_info.pass.cpp 18 const std::type_info& t1 = typeid(int); local
20 assert(t1 == t2);
22 assert(t1 != t3);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
25 assert(strcmp(t1.name(), t3.name()) != 0);
  /external/dropbear/libtommath/
bn_mp_sqrt.c 22 mp_int t1,t2; local
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
44 mp_rshd (&t1,t1.used/2);
46 /* t1 > 0 */
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
53 if ((res = mp_div_2(&t1,&t1)) != MP_OKAY)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/tuple/tuple.tuple/tuple.assign/
convert_copy.pass.cpp 38 typedef std::tuple<int> T1;
40 T1 t1; local
41 t1 = t0;
42 assert(std::get<0>(t1) == 2);
46 typedef std::tuple<int, int> T1;
48 T1 t1; local
49 t1 = t0;
50 assert(std::get<0>(t1) == 2)
57 T1 t1; local
    [all...]
convert_move.pass.cpp 41 typedef std::tuple<int> T1;
43 T1 t1; local
44 t1 = std::move(t0);
45 assert(std::get<0>(t1) == 2);
49 typedef std::tuple<int, int> T1;
51 T1 t1; local
52 t1 = std::move(t0);
53 assert(std::get<0>(t1) == 2)
60 T1 t1; local
82 T1 t1; local
    [all...]
const_pair.pass.cpp 25 typedef std::tuple<int, short> T1;
27 T1 t1; local
28 t1 = t0;
29 assert(std::get<0>(t1) == 2);
30 assert(std::get<1>(t1) == short('a'));
  /external/clang/test/Sema/
sign-conversion.c 7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}} local
  /frameworks/native/opengl/libagl/arch-mips/
fixed_asm.S 35 srl $t1,$a0,23
36 andi $t1,$t1,0xff /* get the e */
38 subu $t1,$t2,$t1 /* t1=127+15-e */
39 blez $t1,0f /* t1<=0? */
43 subu $t1,$t1,
    [all...]

Completed in 2714 milliseconds

1 2 3 4 5 6 7 8 91011>>