HomeSort by relevance Sort by last modified time
    Searched refs:t1 (Results 76 - 100 of 1224) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/utilities/time/time.clock/time.clock.system/
to_time_t.pass.cpp 22 std::time_t t1 = C::to_time_t(C::now()); local
  /external/libcxx/test/utilities/time/time.point/time.point.cons/
convert.pass.cpp 27 std::chrono::time_point<Clock, Duration1> t1 = t2; local
28 assert(t1.time_since_epoch() == Duration1(3000));
33 constexpr std::chrono::time_point<Clock, Duration1> t1 = t2; local
34 static_assert(t1.time_since_epoch() == Duration1(3000), "");
  /external/libcxx/test/utilities/time/time.point/time.point.nonmember/
op_-duration.pass.cpp 27 std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
28 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
op_-time_point.pass.cpp 27 std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
29 assert((t1 - t2) == Duration2(2995));
33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3));
35 static_assert((t1 - t2) == Duration2(2995), "");
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/
move_pair.pass.cpp 41 typedef std::tuple<int, std::unique_ptr<B>> T1;
43 T1 t1; local
44 t1 = std::move(t0);
45 assert(std::get<0>(t1) == 2);
46 assert(std::get<1>(t1)->id_ == 3);
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_const_pair.pass.cpp 29 typedef std::tuple<int, double> T1;
31 T1 t1(std::allocator_arg, A1<int>(5), t0);
32 assert(std::get<0>(t1) == 2);
33 assert(std::get<1>(t1) == 3);
37 typedef std::tuple<alloc_first, double> T1;
40 T1 t1(std::allocator_arg, A1<int>(5), t0);
42 assert(std::get<0>(t1) == 2);
43 assert(std::get<1>(t1) == 3)
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypotl.c 51 long double a=x,b=y,t1,t2,y1,y2,w; local
85 t1=0;
86 SET_HIGH_WORD(t1,ESW(MAX_EXP-2)); /* t1=2^(MAX_EXP-2) */
87 b *= t1;
88 a *= t1;
101 t1 = a;
103 uv.e = t1; uv.bits.manl = 0; t1 = uv.e;
104 t2 = a-t1;
    [all...]
e_hypotf.c 25 float a,b,t1,t2,y1,y2,w; local
53 SET_FLOAT_WORD(t1,0x7e800000); /* t1=2^126 */
54 b *= t1;
55 a *= t1;
68 SET_FLOAT_WORD(t1,ha&0xfffff000);
69 t2 = a-t1;
70 w = __ieee754_sqrtf(t1*t1-(b*(-b)-t2*(a+t1)));
    [all...]
  /bionic/linker/arch/mips64/
begin.S 71 LA t1, _DYNAMIC
72 PTR_ADDU t1, t0
76 REG_L t2, ELF_DYN_TAG(t1)
80 REG_L s0, ELF_DYN_VAL(t1)
86 REG_L s1, ELF_DYN_VAL(t1)
88 2: PTR_ADDU t1, ELF_DYNSZ
100 PTR_L t1, (s0)
101 bgez t1, 9f
106 1: PTR_L t1, (s0)
107 PTR_ADDU t1, t
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
QuarticRoot.h 1 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
  /external/clang/test/CodeGenCXX/
predefined-expr-sizeof.cpp 21 TemplateClass<int> t1; local
22 t1.templateClassFunction();
  /external/clang/test/PCH/Inputs/
namespaces.h 4 typedef int t1; typedef in namespace:N1
16 typedef float t1; typedef in namespace:N2
  /external/clang/test/SemaCXX/
warn-char-subscripts.cpp 4 void t1() { function
18 t1<char>(); // expected-note {{in instantiation of function template specialization 't1<char>' requested here}}
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/
tuple.by.type1.fail.cpp 20 auto t1 = std::make_tuple<int, std::string> ( 42, "Hi" ); local
21 assert ( std::get<cf>(t1) == cf {1,2} ); // no such type
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.algorithm/
swap.pass.cpp 48 std::thread t1; local
49 std::thread::id id1 = t1.get_id();
50 swap(t0, t1);
52 assert(t1.get_id() == id0);
53 t1.join();
  /external/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.member/
swap.pass.cpp 48 std::thread t1; local
49 std::thread::id id1 = t1.get_id();
50 t0.swap(t1);
52 assert(t1.get_id() == id0);
53 t1.join();
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
assign_copy.pass.cpp 28 const T t1[] = {10, 11, 12, 13}; local
30 C c1(std::begin(t1), std::end(t1), A(10));
40 const T t1[] = {10, 11, 12, 13}; local
42 C c1(std::begin(t1), std::end(t1), A(11));
52 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
54 C c1(std::begin(t1), std::end(t1), A(10));
64 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} local
77 const T t1[] = {10, 11, 12, 13}; local
89 const T t1[] = {10, 11, 12, 13}; local
101 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
113 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
126 const T t1[] = {10, 11, 12, 13}; local
138 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; local
    [all...]
  /external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/
tuple_cat.pass.cpp 30 std::tuple<> t1; local
31 std::tuple<> t2 = std::tuple_cat(t1);
40 std::tuple<int> t1(1);
41 std::tuple<int> t = std::tuple_cat(t1);
50 constexpr std::tuple<> t1; local
51 constexpr std::tuple<> t2 = std::tuple_cat(t1);
60 constexpr std::tuple<int> t1(1);
61 constexpr std::tuple<int> t = std::tuple_cat(t1);
65 constexpr std::tuple<int> t1(1);
66 constexpr std::tuple<int, int> t = std::tuple_cat(t1, t1)
90 std::tuple<> t1; local
95 std::tuple<> t1; local
101 std::tuple<> t1; local
107 std::tuple<int*> t1; local
114 std::tuple<int*> t1; local
121 std::tuple<int*> t1; local
129 std::tuple<int*> t1; local
    [all...]
  /external/openssl/crypto/sha/asm/
sha1-thumb.pl 29 $t1="r1";
45 ldr $t1,[$t0]
51 add $t2,$t1 @ E+=X[i]
62 add $a,$t2,$t1 @ A=E+F_xx_xx(B,C,D)
69 mov $t1,$c
70 eor $t1,$d
71 and $t1,$b
72 eor $t1,$d @ F_00_19(B,C,D)
80 mov $t1,$b
81 eor $t1,$
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
u_time.h 71 * Return t2 = t1 + usecs
75 util_time_add(const struct util_time *t1,
79 t2->counter = t1->counter + usecs;
88 util_time_diff(const struct util_time *t1,
91 return t2->counter - t1->counter;
102 _util_time_compare(const struct util_time *t1,
105 if (t1->counter < t2->counter)
107 else if(t1->counter > t2->counter)
  /external/libcxx/test/thread/futures/futures.async/
async.pass.cpp 71 Clock::time_point t1 = Clock::now(); local
72 assert(t1-t0 < ms(100));
79 Clock::time_point t1 = Clock::now(); local
80 assert(t1-t0 < ms(100));
87 Clock::time_point t1 = Clock::now(); local
88 assert(t1-t0 < ms(100));
95 Clock::time_point t1 = Clock::now(); local
96 assert(t1-t0 > ms(100));
104 Clock::time_point t1 = Clock::now(); local
105 assert(t1-t0 < ms(100))
112 Clock::time_point t1 = Clock::now(); local
120 Clock::time_point t1 = Clock::now(); local
128 Clock::time_point t1 = Clock::now(); local
137 Clock::time_point t1 = Clock::now(); local
145 Clock::time_point t1 = Clock::now(); local
153 Clock::time_point t1 = Clock::now(); local
161 Clock::time_point t1 = Clock::now(); local
170 Clock::time_point t1 = Clock::now(); local
180 Clock::time_point t1 = Clock::now(); local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
u_time.h 71 * Return t2 = t1 + usecs
75 util_time_add(const struct util_time *t1,
79 t2->counter = t1->counter + usecs;
88 util_time_diff(const struct util_time *t1,
91 return t2->counter - t1->counter;
102 _util_time_compare(const struct util_time *t1,
105 if (t1->counter < t2->counter)
107 else if(t1->counter > t2->counter)
  /external/eigen/test/
zerosized.cpp 27 MatrixType t1; local
31 zeroReduction(t1);
33 VERIFY(t1.rows() == 0);
35 VERIFY(t1.cols() == 0);
45 VERIFY(t1==t2);
52 VectorType t1; local
56 zeroReduction(t1);
57 VERIFY(t1.size() == 0);
62 VERIFY(t1==t2);
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
splice_after_flist.pass.cpp 21 const T t1[] = {0, 1, 2, 3, 4, 5, 6, 7}; variable
23 const int size_t1 = std::end(t1) - std::begin(t1);
33 assert(*i == t1[n1]);
37 assert(*i == t1[n1]);
50 C c1(std::begin(t1), std::end(t1));
66 C c1(std::begin(t1), std::end(t1));
  /art/test/122-secondarydex/src/
Main.java 32 Test t1 = new Test(); local
35 t1.test(t2);
36 t1.test(t3);

Completed in 1062 milliseconds

1 2 34 5 6 7 8 91011>>