Searched refs:t2 (Results 26 - 50 of 873) sorted by relevance

1234567891011>>

/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test.cc21 ScopedThread t1, t2; local
24 t2.Call(foo);
25 t2.Call(bar);
26 t2.Write1(l, true);
27 t2.Return();
28 t2.Return();
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
H A Dunique.pass.cpp26 const T t2[] = {0, 5, 0, 5}; local
28 C c2(std::begin(t2), std::end(t2));
36 const T t2[] = {0}; local
38 C c2(std::begin(t2), std::end(t2));
46 const T t2[] = {5}; local
48 C c2(std::begin(t2), std::end(t2));
64 const T t2[] local
75 const T t2[] = {0, 5, 0, 5}; local
85 const T t2[] = {0}; local
95 const T t2[] = {5}; local
113 const T t2[] = {5, 0}; local
[all...]
H A Dunique_pred.pass.cpp31 const T t2[] = {0, 5, 0, 5}; local
33 C c2(std::begin(t2), std::end(t2));
41 const T t2[] = {0}; local
43 C c2(std::begin(t2), std::end(t2));
51 const T t2[] = {5}; local
53 C c2(std::begin(t2), std::end(t2));
69 const T t2[] local
80 const T t2[] = {0, 5, 0, 5}; local
90 const T t2[] = {0}; local
100 const T t2[] = {5}; local
118 const T t2[] = {5, 0}; local
[all...]
H A Dremove.pass.cpp26 const T t2[] = {5, 5, 5}; local
28 C c2(std::begin(t2), std::end(t2));
45 const T t2[] = {5, 5, 5}; local
47 C c2(std::begin(t2), std::end(t2));
63 const T t2[] = {5, 5, 5}; local
65 C c2(std::begin(t2), std::end(t2));
74 const T t2[] local
93 const T t2[] = {5, 5, 5}; local
111 const T t2[] = {5, 5, 5}; local
[all...]
H A Dremove_if.pass.cpp31 const T t2[] = {5, 5, 5}; local
33 C c2(std::begin(t2), std::end(t2));
50 const T t2[] = {5, 5, 5}; local
52 C c2(std::begin(t2), std::end(t2));
68 const T t2[] = {5, 5, 5}; local
70 C c2(std::begin(t2), std::end(t2));
79 const T t2[] local
98 const T t2[] = {5, 5, 5}; local
116 const T t2[] = {5, 5, 5}; local
[all...]
/external/libcxx/test/input.output/iostream.forward/
H A Diosfwd.pass.cpp19 std::char_traits<wchar_t>* t2 = 0; local
24 std::basic_ios<wchar_t>* t2 = 0; local
29 std::basic_streambuf<wchar_t>* t2 = 0; local
34 std::basic_istream<wchar_t>* t2 = 0; local
39 std::basic_ostream<wchar_t>* t2 = 0; local
44 std::basic_iostream<wchar_t>* t2 = 0; local
49 std::basic_stringbuf<wchar_t>* t2 = 0; local
54 std::basic_istringstream<wchar_t>* t2 = 0; local
59 std::basic_ostringstream<wchar_t>* t2 = 0; local
64 std::basic_stringstream<wchar_t>* t2 local
69 std::basic_filebuf<wchar_t>* t2 = 0; local
74 std::basic_ifstream<wchar_t>* t2 = 0; local
79 std::basic_ofstream<wchar_t>* t2 = 0; local
84 std::basic_fstream<wchar_t>* t2 = 0; local
89 std::istreambuf_iterator<wchar_t>* t2 = 0; local
94 std::ostreambuf_iterator<wchar_t>* t2 = 0; local
99 std::wios* t2 = 0; local
103 std::istream* t2 = 0; local
109 std::istringstream* t2 = 0; local
115 std::ifstream* t2 = 0; local
121 std::wistream* t2 = 0; local
127 std::wistringstream* t2 = 0; local
133 std::wifstream* t2 = 0; local
139 std::streampos* t2 = 0; local
[all...]
/external/libcxx/test/utilities/time/time.point/time.point.nonmember/
H A Dop_+.pass.cpp32 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
33 assert(t2.time_since_epoch() == Duration2(3005));
34 t2 = Duration2(6) + t1;
35 assert(t2.time_since_epoch() == Duration2(3006));
40 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
41 static_assert(t2.time_since_epoch() == Duration2(3005), "");
H A Dop_-duration.pass.cpp28 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
29 assert(t2.time_since_epoch() == Duration2(2995));
34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
35 static_assert(t2.time_since_epoch() == Duration2(2995), "");
H A Dop_-time_point.pass.cpp28 std::chrono::time_point<Clock, Duration2> t2(Duration2(5));
29 assert((t1 - t2) == Duration2(2995));
34 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(5));
35 static_assert((t1 - t2) == Duration2(2995), "");
/external/compiler-rt/test/tsan/libcxx/
H A Dstd_shared_ptr.cc10 std::thread t2; local
15 t2 = std::thread([thingy, &v2] { v2 = *thingy; });
19 t2.join();
/external/libcxx/test/input.output/stream.buffers/streambuf/streambuf.protected/streambuf.assign/
H A Dassign.pass.cpp56 test<char> t2; local
57 t2 = t;
61 test<wchar_t> t2; local
62 t2 = t;
69 test<char> t2; local
70 t2 = t;
77 test<wchar_t> t2; local
78 t2 = t;
83 test<char> t2; local
84 t2
88 test<wchar_t> t2; local
[all...]
/external/clang/test/Sema/
H A Dattr-naked.c11 void t2() __attribute__((naked(2))); // expected-error {{'naked' attribute takes no arguments}}
H A Dattr-nodebug.c11 void t2() __attribute__((nodebug(2))); // expected-error {{'nodebug' attribute takes no arguments}}
/external/libcxx/test/utilities/time/time.point/time.point.cons/
H A Dconvert.pass.cpp26 std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
27 std::chrono::time_point<Clock, Duration1> t1 = t2;
32 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
33 constexpr std::chrono::time_point<Clock, Duration1> t1 = t2;
H A Dconvert.fail.cpp27 std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
28 std::chrono::time_point<Clock, Duration1> t1 = t2;
/external/eigen/test/
H A Dzerosized.cpp40 MatrixType t2(0, 0);
41 VERIFY(t2.rows() == 0);
42 VERIFY(t2.cols() == 0);
44 zeroReduction(t2);
45 VERIFY(t1==t2);
58 VectorType t2(DenseIndex(0)); // DenseIndex disambiguates with 0-the-null-pointer (error with gcc 4.4 and MSVC8)
59 VERIFY(t2.size() == 0);
60 zeroReduction(t2);
62 VERIFY(t1==t2);
/external/valgrind/main/none/tests/mips64/
H A Dcvm_ins.stdout.exp1 exts $t1, $t2, 1, 7 :: rt 0x0 rs 0x0, p 0x00000001, lenm1 0x00000007
2 exts $t1, $t2, 1, 7 :: rt 0x6e rs 0x130476dc, p 0x00000001, lenm1 0x00000007
3 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffdc rs 0x2608edb8, p 0x00000001, lenm1 0x00000007
4 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffb2 rs 0x350c9b64, p 0x00000001, lenm1 0x00000007
5 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffb8 rs 0x4c11db70, p 0x00000001, lenm1 0x00000007
6 exts $t1, $t2, 1, 7 :: rt 0xffffffffffffffd6 rs 0x5f15adac, p 0x00000001, lenm1 0x00000007
7 exts $t1, $t2, 1, 7 :: rt 0x64 rs 0x6a1936c8, p 0x00000001, lenm1 0x00000007
8 exts $t1, $t2, 1, 7 :: rt 0xa rs 0x791d4014, p 0x00000001, lenm1 0x00000007
9 exts $t1, $t2, 1, 7 :: rt 0x70 rs 0x9823b6e0, p 0x00000001, lenm1 0x00000007
10 exts $t1, $t2,
[all...]
/external/fio/crc/
H A Dsha256.c69 uint32_t a, b, c, d, e, f, g, h, t1, t2; local
87 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2;
89 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2;
91 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2;
93 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2;
95 t2
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuarticRoot.h1 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
/external/clang/test/CodeGenCXX/
H A Dpredefined-expr-sizeof.cpp23 TemplateClass<double> t2; local
24 t2.templateClassFunction();
/external/clang/test/Index/
H A Dcomplete-documentation.cpp33 T2 t2; local
34 t2.T4;
/external/libcxx/test/language.support/support.rtti/type.info/
H A Dtype_info_hash.pass.cpp19 const std::type_info& t2 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
/external/skia/experimental/Intersection/
H A DQuarticRoot.h1 int reducedQuarticRoots(const double t4, const double t3, const double t2, const double t1,
/external/aac/libFDK/src/
H A Dfft_rad2.cpp173 INT t2 = t1 + (mh<<1); local
176 //cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
177 vi = x[t2+1]>>1;
178 vr = x[t2]>>1;
186 x[t2] = ur-vr;
187 x[t2+1] = ui-vi;
190 t2 = t1+(mh<<1);
192 //cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SG
215 INT t2 = t1 + (mh<<1); local
279 INT t2 = t1 + (mh<<1); local
375 INT t2 = t1 + (mh<<1); local
417 INT t2 = t1 + (mh<<1); local
480 INT t2 = t1 + (mh<<1); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_time.h71 * Return t2 = t1 + usecs
77 struct util_time *t2)
79 t2->counter = t1->counter + usecs;
89 const struct util_time *t2)
91 return t2->counter - t1->counter;
103 const struct util_time *t2)
105 if (t1->counter < t2->counter)
107 else if(t1->counter > t2->counter)
75 util_time_add(const struct util_time *t1, int64_t usecs, struct util_time *t2) argument
88 util_time_diff(const struct util_time *t1, const struct util_time *t2) argument
102 _util_time_compare(const struct util_time *t1, const struct util_time *t2) argument

Completed in 554 milliseconds

1234567891011>>