Searched refs:t2 (Results 1 - 25 of 872) sorted by relevance

1234567891011>>

/external/libcxx/test/std/utilities/type.index/type.index.overview/
H A Dcopy_assign.pass.cpp22 std::type_index t2(typeid(double));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
H A Dcopy_ctor.pass.cpp22 std::type_index t2 = t1; local
23 assert(t2 == t1);
/external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/
H A Dop_less.pass.cpp45 T1 t2(Duration1(3));
46 assert(!(t1 < t2));
47 assert(!(t1 > t2));
48 assert( (t1 <= t2));
49 assert( (t1 >= t2));
53 T1 t2(Duration1(4));
54 assert( (t1 < t2));
55 assert(!(t1 > t2));
56 assert( (t1 <= t2));
57 assert(!(t1 >= t2));
[all...]
H A Dop_equal.pass.cpp37 T1 t2(Duration1(3));
38 assert( (t1 == t2));
39 assert(!(t1 != t2));
43 T1 t2(Duration1(4));
44 assert(!(t1 == t2));
45 assert( (t1 != t2));
49 T2 t2(Duration2(3000));
50 assert( (t1 == t2));
51 assert(!(t1 != t2));
55 T2 t2(Duration
[all...]
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
H A Dlt.pass.cpp44 const T2 t2; local
45 assert(!(t1 < t2));
46 assert( (t1 <= t2));
47 assert(!(t1 > t2));
48 assert( (t1 >= t2));
54 const T2 t2(1);
55 assert(!(t1 < t2));
56 assert( (t1 <= t2));
57 assert(!(t1 > t2));
58 assert( (t1 >= t2));
[all...]
H A Deq.pass.cpp32 const T2 t2; local
33 assert(t1 == t2);
34 assert(!(t1 != t2));
40 const T2 t2(1.1);
41 assert(!(t1 == t2));
42 assert(t1 != t2);
48 const T2 t2(1);
49 assert(t1 == t2);
50 assert(!(t1 != t2));
56 const T2 t2(
[all...]
/external/ltp/testcases/open_posix_testsuite/include/
H A Dtimespec.h20 static long timespec_nsec_diff(struct timespec *t1, struct timespec *t2) argument
25 if (t2->tv_sec > t1->tv_sec) {
28 t1 = t2;
29 t2 = tmp;
32 sec_diff = t1->tv_sec - t2->tv_sec;
33 nsec_diff = t1->tv_nsec - t2->tv_nsec;
/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp22 T2 t2; local
23 t2.
/external/clang/test/CodeGen/
H A D2006-01-16-BitCountIntrinsicsUnsigned.c3 unsigned t2(unsigned X) { function
4 // CHECK: t2
H A Darm-fp16-arguments.c17 __fp16 t2() { return g; } function
18 // SOFT: define i32 @t2()
19 // HARD: define arm_aapcs_vfpcc float @t2()
20 // NATIVE: define half @t2()
H A Dattr-nodebug.c11 void t2() function
23 // CHECK-LABEL: @t2
28 // We should see a function description for t2 but not t1.
30 // CHECK: DISubprogram(name: "t2"
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
H A DGenericDoubleReferences.java22 final T t2; field in class:GenericDoubleReferences
26 @Inject GenericDoubleReferences(T t, Thing a, T t2, Thing a2) { argument
29 this.t2 = t2;
/external/clang/test/CoverageMapping/
H A Dnestedclass.cpp24 Test::Test2 t2; local
26 t2.emitTest2();
/external/clang/test/SemaCXX/
H A Dwarn-char-subscripts.cpp11 void t2() { function
19 t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested here}}
/external/curl/tests/libtest/
H A Dtestutil.h29 * Make sure that the first argument (t1) is the more recent time and t2 is
34 long tutil_tvdiff(struct timeval t1, struct timeval t2);
41 double tutil_tvdiff_secs(struct timeval t1, struct timeval t2);
/external/libcxx/test/std/utilities/time/time.clock/time.clock.steady/
H A Dnow.pass.cpp25 C::time_point t2 = C::now(); local
26 assert(t2 >= t1);
/external/libcxx/test/std/utilities/type.index/type.index.members/
H A Deq.pass.cpp23 std::type_index t2 = typeid(int); local
25 assert(t1 == t2);
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp19 T<2> t2; variable
/external/clang/test/Sema/
H A Dattr-noduplicate.c7 void t2() __attribute__((noduplicate(2))); // expected-error {{'noduplicate' attribute takes no arguments}}
H A Dattr-noinline.c7 void t2() __attribute__((noinline(2))); // expected-error {{'noinline' attribute takes no arguments}}
/external/libcxx/test/std/re/re.traits/
H A Ddefault.pass.cpp30 std::regex_traits<wchar_t> t2; local
31 assert(t2.getloc().name() == "C");
37 std::regex_traits<wchar_t> t2; local
38 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
H A Dgetloc.pass.cpp29 std::regex_traits<wchar_t> t2; local
30 assert(t2.getloc().name() == "C");
36 std::regex_traits<wchar_t> t2; local
37 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
/external/libcxx/test/std/thread/thread.threads/thread.thread.class/thread.thread.constr/
H A Dconstr.fail.cpp25 std::thread t2 ( t1, 1, 2.0 );
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_swappable_include_order.pass.cpp39 T t2 = {}; local
40 std::iter_swap(t1, t2);
41 std::swap_ranges(t1, t1 + 17, t2);
/external/ltp/include/
H A Dtst_timer.h82 static inline int tst_timespec_lt(struct timespec t1, struct timespec t2) argument
84 if (t1.tv_sec == t2.tv_sec)
85 return t1.tv_nsec < t2.tv_nsec;
87 return t1.tv_sec < t2.tv_sec;
111 struct timespec t2)
115 res.tv_sec = t1.tv_sec - t2.tv_sec;
117 if (t1.tv_nsec < t2.tv_nsec) {
119 res.tv_nsec = 1000000000 - (t2.tv_nsec - t1.tv_nsec);
121 res.tv_nsec = t1.tv_nsec - t2.tv_nsec;
128 struct timespec t2)
110 tst_timespec_diff(struct timespec t1, struct timespec t2) argument
127 tst_timespec_diff_us(struct timespec t1, struct timespec t2) argument
133 tst_timespec_diff_ms(struct timespec t1, struct timespec t2) argument
142 tst_timespec_abs_diff(struct timespec t1, struct timespec t2) argument
151 tst_timespec_abs_diff_us(struct timespec t1, struct timespec t2) argument
157 tst_timespec_abs_diff_ms(struct timespec t1, struct timespec t2) argument
[all...]

Completed in 630 milliseconds

1234567891011>>