HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 1 - 25 of 1224) 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
  /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...]
ctor.pass.cpp 21 std::type_index t1 = typeid(int); local
  /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);
  /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 );
  /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...]
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...]
  /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...]
  /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());
  /external/libcxx/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/libcxx/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
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/
non_member_swap.pass.cpp 27 T t1; local
28 swap(t0, t1);
33 T t1(MoveOnly(1));
34 swap(t0, t1);
36 assert(std::get<0>(t1) == 0);
41 T t1(MoveOnly(2), MoveOnly(3));
42 swap(t0, t1);
45 assert(std::get<0>(t1) == 0);
46 assert(std::get<1>(t1) == 1);
51 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.swap/
member_swap.pass.cpp 26 T t1; local
27 t0.swap(t1);
32 T t1(MoveOnly(1));
33 t0.swap(t1);
35 assert(std::get<0>(t1) == 0);
40 T t1(MoveOnly(2), MoveOnly(3));
41 t0.swap(t1);
44 assert(std::get<0>(t1) == 0);
45 assert(std::get<1>(t1) == 1);
50 T t1(MoveOnly(3), MoveOnly(4), MoveOnly(5))
    [all...]

Completed in 1089 milliseconds

1 2 3 4 5 6 7 8 91011>>