HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 1 - 25 of 1934) 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
  /external/libcxx/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /external/libcxx/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
constr.fail.cpp 24 volatile std::thread t1; local
25 std::thread t2 ( t1, 1, 2.0 );
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
constr.fail.cpp 24 volatile std::thread t1; local
25 std::thread t2 ( t1, 1, 2.0 );
  /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...]
  /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...]
  /external/libcxx/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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/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...]
  /external/libcxx/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++/libcxx/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...]
  /development/ndk/sources/android/ndk_helper/
interpolator.cpp 110 float t1; local
119 t1 = t / d;
120 return (c * t1 * t1 + b);
124 t1 = t / d;
125 return (-c * t1 * (t1 - 2) + b);
129 t1 = t / d / 2;
130 if( t1 < 1 )
131 return (c / 2 * t1 * t1 + b)
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_equal.c 42 pthread_equal (pthread_t t1, pthread_t t2)
46 * This function returns nonzero if t1 and t2 are equal, else
50 * t1,
56 * This function returns nonzero if t1 and t2 are equal, else
60 * non-zero if t1 and t2 refer to the same thread,
61 * 0 t1 and t2 do not refer to the same thread
72 result = ( t1.p == t2.p && t1.x == t2.x );
  /external/libcxx/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());

Completed in 763 milliseconds

1 2 3 4 5 6 7 8 91011>>