Searched refs:t1 (Results 126 - 150 of 169) sorted by relevance

1234567

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
H A Dnotify_one.pass.cpp54 std::thread t1(f1);
69 t1.join();
86 t1.join();
H A Dwait_for.pass.cpp48 Clock::time_point t1 = Clock::now(); local
51 assert(t1 - t0 < milliseconds(250));
56 assert(t1 - t0 - milliseconds(250) < milliseconds(50));
H A Dwait_for_pred.pass.cpp56 Clock::time_point t1 = Clock::now(); local
59 assert(t1 - t0 < milliseconds(250));
64 assert(t1 - t0 - milliseconds(250) < milliseconds(50));
H A Dwait_until.pass.cpp63 Clock::time_point t1 = Clock::now(); local
66 assert(t1 - t0 < Clock::duration(250));
71 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
H A Dwait_until_pred.pass.cpp73 Clock::time_point t1 = Clock::now(); local
76 assert(t1 - t0 < Clock::duration(250));
82 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
H A Dnotify_all.pass.cpp54 std::thread t1(f1);
67 t1.join();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/
H A Dmove.pass.cpp60 std::thread t1 = std::move(t0); local
61 assert(t1.get_id() == id);
63 t1.join();
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
H A Dmember_swap.pass.cpp26 const T t1[] = {0, 1, 2, 3, 4, 5}; local
27 C c1(std::begin(t1), std::end(t1), A(1));
51 const T t1[] = {0, 1, 2, 3, 4, 5}; local
52 C c1(std::begin(t1), std::end(t1), A(1));
105 const T t1[] = {0, 1, 2, 3, 4, 5}; local
106 C c1(std::begin(t1), std::end(t1), A(1));
130 const T t1[] local
184 const T t1[] = {0, 1, 2, 3, 4, 5}; local
209 const T t1[] = {0, 1, 2, 3, 4, 5}; local
[all...]
H A Dnon_member_swap.pass.cpp27 const T t1[] = {0, 1, 2, 3, 4, 5}; local
28 C c1(std::begin(t1), std::end(t1), A(1));
52 const T t1[] = {0, 1, 2, 3, 4, 5}; local
53 C c1(std::begin(t1), std::end(t1), A(1));
106 const T t1[] = {0, 1, 2, 3, 4, 5}; local
107 C c1(std::begin(t1), std::end(t1), A(1));
131 const T t1[] local
185 const T t1[] = {0, 1, 2, 3, 4, 5}; local
210 const T t1[] = {0, 1, 2, 3, 4, 5}; local
[all...]
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
H A Dtype_with_alignment.hpp197 typedef ::boost::detail::lower_alignment<Align> t1; typedef in class:boost::detail::type_with_alignment_imp
199 ::boost::detail::is_aligned< ::boost::alignment_of<t1>::value,Align >::value
200 , t1
297 boost::detail::type_with_alignment_imp<8> >::type t1;
299 typedef t1::type type;
306 boost::detail::type_with_alignment_imp<16> >::type t1;
308 typedef t1::type type;
315 boost::detail::type_with_alignment_imp<32> >::type t1;
317 typedef t1::type type;
323 boost::detail::type_with_alignment_imp<64> >::type t1;
[all...]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
H A Dwait_until.pass.cpp59 Clock::time_point t1 = Clock::now(); local
61 assert(t1-t0 < ms(5));
75 Clock::time_point t1 = Clock::now(); local
77 assert(t1-t0 < ms(5));
91 Clock::time_point t1 = Clock::now(); local
93 assert(t1-t0 < ms(5));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.unique_future/
H A Dwait_until.pass.cpp59 Clock::time_point t1 = Clock::now(); local
61 assert(t1-t0 < ms(5));
75 Clock::time_point t1 = Clock::now(); local
77 assert(t1-t0 < ms(5));
91 Clock::time_point t1 = Clock::now(); local
93 assert(t1-t0 < ms(5));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
H A Dwait_until.pass.cpp60 Clock::time_point t1 = Clock::now(); local
63 assert(t1 - t0 < Clock::duration(250));
68 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
H A Dwait_until_pred.pass.cpp69 Clock::time_point t1 = Clock::now(); local
72 assert(t1 - t0 < Clock::duration(250));
78 assert(t1 - t0 - Clock::duration(250) < Clock::duration(50));
H A Dnotify_all.pass.cpp50 std::thread t1(f1);
63 t1.join();
/ndk/sources/cxx-stl/gabi++/tests/
H A Ddynamic_cast_stress.cpp62 auto t1 = Clock::now(); local
63 std::cout << US(t1-t0).count() << " microseconds\n";
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/
H A Dat.pass.cpp59 constexpr T t1 = c.at(0); local
60 static_assert (t1 == 1, "");
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
H A Datan.pass.cpp42 std::complex<double> t1(-imag(x[i]), real(x[i]));
43 std::complex<double> t2 = atanh(t1);
H A Dcos.pass.cpp43 std::complex<double> t1(-imag(x[i]), real(x[i]));
44 std::complex<double> z = cosh(t1);
H A Dsin.pass.cpp43 std::complex<double> t1(-imag(x[i]), real(x[i]));
44 std::complex<double> t2 = sinh(t1);
H A Dtan.pass.cpp44 std::complex<double> t1(-imag(x[i]), real(x[i]));
45 std::complex<double> t2 = tanh(t1);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
H A Dmutex_try_to_lock.pass.cpp53 time_point t1 = Clock::now(); local
54 ns d = t1 - t0 - ms(250);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
H A Dlock.pass.cpp37 time_point t1 = Clock::now(); local
39 ns d = t1 - t0 - ms(250);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
H A Dmutex_try_to_lock.pass.cpp50 time_point t1 = Clock::now(); local
51 ns d = t1 - t0 - ms(250);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
H A Dlock.pass.cpp34 time_point t1 = Clock::now(); local
36 ns d = t1 - t0 - ms(250);

Completed in 617 milliseconds

1234567