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

1 2 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_less.pass.cpp 39 typedef std::chrono::time_point<Clock, Duration2> T2;
43 T1 t2(Duration1(3));
44 assert(!(t1 < t2));
45 assert(!(t1 > t2));
46 assert( (t1 <= t2));
47 assert( (t1 >= t2));
51 T1 t2(Duration1(4));
52 assert( (t1 < t2));
53 assert(!(t1 > t2));
54 assert( (t1 <= t2));
    [all...]
op_equal.pass.cpp 31 typedef std::chrono::time_point<Clock, Duration2> T2;
35 T1 t2(Duration1(3));
36 assert( (t1 == t2));
37 assert(!(t1 != t2));
41 T1 t2(Duration1(4));
42 assert(!(t1 == t2));
43 assert( (t1 != t2));
47 T2 t2(Duration2(3000));
48 assert( (t1 == t2));
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/
lt.pass.cpp 38 typedef std::tuple<> T2;
40 const T2 t2; local
41 assert(!(t1 < t2));
42 assert( (t1 <= t2));
43 assert(!(t1 > t2));
44 assert( (t1 >= t2));
48 typedef std::tuple<double> T2;
50 const T2 t2(1)
    [all...]
eq.pass.cpp 26 typedef std::tuple<> T2;
28 const T2 t2; local
29 assert(t1 == t2);
30 assert(!(t1 != t2));
34 typedef std::tuple<double> T2;
36 const T2 t2(1.1);
37 assert(!(t1 == t2));
38 assert(t1 != t2);
    [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
51 * t2
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/clang/test/CodeCompletion/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /external/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
attr-naked.c 14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
UnitBezier.h 72 double t2; local
78 for (t2 = x, i = 0; i < 8; i++) {
79 x2 = sampleCurveX(t2) - x;
81 return t2;
82 d2 = sampleCurveDerivativeX(t2);
85 t2 = t2 - x2 / d2;
91 t2 = x;
94 x2 = sampleCurveX(t2);
96 return t2;
    [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test.cc 21 ScopedThread t1, t2; local
24 t2.Call(foo);
25 t2.Call(bar);
26 t2.Write1(l, true);
27 t2.Return();
28 t2.Return();
tsan_string.cc 44 ScopedThread t1, t2; local
46 t2.Memcpy(data, data2, 10, true);
56 ScopedThread t1, t2; local
58 t2.Memcpy(data+3, data2, 4, true);
66 ScopedThread t1, t2; local
68 t2.Memcpy(data1, data2, 10, true);
74 ScopedThread t1, t2; local
76 t2.Memcpy(data, data1, 10, true);
81 ScopedThread t1, t2; local
83 t2.Memset(data, 2, 10, true)
    [all...]
tsan_mop.cc 26 ScopedThread t1, t2; local
29 t2.Write1(l2);
33 ScopedThread t1, t2; local
36 t2.Write1(l, true);
40 ScopedThread t1, t2; local
43 t2.Write1(l, true);
47 ScopedThread t1, t2; local
50 t2.Read1(l, true);
54 ScopedThread t1, t2; local
57 t2.Read1(l)
62 ScopedThread t1, t2; local
74 ScopedThread t1, t2; local
93 ScopedThread t1, t2; local
108 ScopedThread t1, t2; local
142 ScopedThread t1, t2; local
156 ScopedThread t1, t2; local
181 ScopedThread t1, t2; local
190 ScopedThread t1, t2; local
211 ScopedThread t2; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
  /external/clang/test/PCH/
cxx-static_assert.cpp 19 T<2> t2; variable
  /external/clang/test/Sema/
attr-noinline.c 7 void t2() __attribute__((noinline(2))); // expected-error {{'noinline' attribute takes no arguments}}
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 19 const std::type_info& t2 = typeid(int); local
20 assert(t1 == t2);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
default.pass.cpp 27 std::regex_traits<wchar_t> t2; local
28 assert(t2.getloc().name() == "C");
34 std::regex_traits<wchar_t> t2; local
35 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
getloc.pass.cpp 26 std::regex_traits<wchar_t> t2; local
27 assert(t2.getloc().name() == "C");
33 std::regex_traits<wchar_t> t2; local
34 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
op_+.pass.cpp 31 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
32 assert(t2.time_since_epoch() == Duration2(3005));
33 t2 = Duration2(6) + t1;
34 assert(t2.time_since_epoch() == Duration2(3006));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
lt.pass.cpp 25 std::type_index t2 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
  /external/dropbear/libtommath/
bn_mp_lcm.c 22 mp_int t1, t2; local
25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
36 /* store quotient in t2 such that t2 * b is the LCM */
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
40 res = mp_mul(b, &t2, c);
42 /* store quotient in t2 such that t2 * a is the LCM */
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
46 res = mp_mul(a, &t2, c)
    [all...]
bn_mp_n_root.c 30 mp_int t1, t2, t3; local
42 if ((res = mp_init (&t2)) != MP_OKAY) {
54 /* t2 = 2 */
55 mp_set (&t2, 2);
58 /* t1 = t2 */
59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
63 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
71 /* t2 = t1**b */
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
76 /* t2 = t1**b - a *
    [all...]
  /external/valgrind/main/none/tests/mips32/
MIPS32int.c 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);
137 TESTINST1("add $t0, $t1, $t2", 0, -1, t0, t1, t2);
    [all...]

Completed in 447 milliseconds

1 2 3 4 5 6 7 8 91011>>