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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gold/testsuite/
start_lib_test_2.c 25 extern void t2 (void);
28 t2 (void) function
thin_archive_test_1.cc 31 extern int t2();
36 return (t2() << 4) | 1;
start_lib_test_1.c 26 extern void t2 (void);
31 t2 ();
protected_3.cc 30 t2() function
protected_main_3.cc 28 t2() function
thin_archive_test_2.cc 34 t2() function
relro_test_main.cc 26 extern bool t2();
32 assert(t2());
weak_undef.h 24 extern int t2();
protected_main_1.cc 29 extern bool t2();
38 assert(t2());
  /external/libcxx/test/std/utilities/type.index/type.index.overview/
copy_assign.pass.cpp 22 std::type_index t2(typeid(double));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/type.index/type.index.overview/
copy_assign.pass.cpp 22 std::type_index t2(typeid(double));
23 assert(t2 != t1);
24 t2 = t1;
25 assert(t2 == t1);
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /external/libcxx/test/std/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 41 typedef std::chrono::time_point<Clock, Duration2> T2;
45 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));
    [all...]
op_equal.pass.cpp 33 typedef std::chrono::time_point<Clock, Duration2> T2;
37 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));
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 41 typedef std::chrono::time_point<Clock, Duration2> T2;
45 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));
    [all...]
op_equal.pass.cpp 33 typedef std::chrono::time_point<Clock, Duration2> T2;
37 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));
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 42 typedef std::tuple<> T2;
44 const T2 t2; local
45 assert(!(t1 < t2));
46 assert( (t1 <= t2));
47 assert(!(t1 > t2));
48 assert( (t1 >= t2));
52 typedef std::tuple<double> T2;
54 const T2 t2(1)
    [all...]
eq.pass.cpp 30 typedef std::tuple<> T2;
32 const T2 t2; local
33 assert(t1 == t2);
34 assert(!(t1 != t2));
38 typedef std::tuple<double> T2;
40 const T2 t2(1.1);
41 assert(!(t1 == t2));
42 assert(t1 != t2);
    [all...]
  /external/ltp/testcases/open_posix_testsuite/include/
timespec.h 20 static long timespec_nsec_diff(struct timespec *t1, struct timespec *t2)
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/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /external/curl/tests/libtest/
testutil.h 29 * 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/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
GenericDoubleReferences.java 22 final T t2; field in class:GenericDoubleReferences
26 @Inject GenericDoubleReferences(T t, Thing a, T t2, Thing a2) {
29 this.t2 = t2;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
BounceInterpolator.java 34 float t2 = t - 6f / 11f; local
35 return SCALE_FACTOR * t2 * t2 + 3f / 4f;
37 float t2 = t - 9f / 11f; local
38 return SCALE_FACTOR * t2 * t2 + 15f / 16f;

Completed in 918 milliseconds

1 2 3 4 5 6 7 8 91011>>