HomeSort by relevance Sort by last modified time
    Searched defs:ms (Results 76 - 100 of 558) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/libcxx/test/std/thread/futures/futures.unique_future/
wait_for.pass.cpp 24 typedef std::chrono::milliseconds ms; typedef
28 std::this_thread::sleep_for(ms(500));
36 std::this_thread::sleep_for(ms(500));
43 std::this_thread::sleep_for(ms(500));
56 assert(f.wait_for(ms(300)) == std::future_status::timeout);
58 assert(f.wait_for(ms(300)) == std::future_status::ready);
64 assert(t1-t0 < ms(50));
72 assert(f.wait_for(ms(300)) == std::future_status::timeout);
74 assert(f.wait_for(ms(300)) == std::future_status::ready);
80 assert(t1-t0 < ms(50))
    [all...]
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
mutex_duration.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
57 assert(d < Tolerance); // within 50ms
67 assert(d < Tolerance); // within 50ms
mutex_time_point.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
56 assert(d < Tolerance); // within 50ms
66 assert(d < Tolerance); // within 50ms
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
lock.pass.cpp 32 typedef std::chrono::milliseconds ms; typedef
35 ms WaitTime = ms(250);
41 ms Tolerance = ms(25);
43 ms Tolerance = ms(25 * 5);
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/
lock.pass.cpp 33 typedef std::chrono::milliseconds ms; typedef
36 ms WaitTime = ms(250);
42 ms Tolerance = ms(50);
44 ms Tolerance = ms(50 * 5);
lock_shared.pass.cpp 34 typedef std::chrono::milliseconds ms; typedef
37 ms WaitTime = ms(250);
43 ms Tolerance = ms(50);
45 ms Tolerance = ms(50 * 5);
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
lock.pass.cpp 33 typedef std::chrono::milliseconds ms; typedef
37 ms WaitTime = ms(250);
43 ms Tolerance = ms(50);
45 ms Tolerance = ms(100);
55 ns d = t1 - t0 - ms(250);
56 assert(d < ms(50)); // within 50ms
    [all...]
lock_shared.pass.cpp 34 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
try_lock_for.pass.cpp 34 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
try_lock_shared.pass.cpp 34 typedef std::chrono::milliseconds ms; typedef
39 ms Tolerance = ms(200);
41 ms Tolerance = ms(200 * 5);
54 ns d = t1 - t0 - ms(250);
64 std::this_thread::sleep_for(ms(250));
try_lock_shared_for.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
56 assert(d < Tolerance); // within 50ms
65 assert(d < Tolerance); // within 50ms
try_lock_shared_until.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
56 assert(d < Tolerance); // within 50ms
try_lock_until.pass.cpp 34 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.literals/
literals.pass.cpp 25 static_assert ( std::is_same<decltype( 3ms ), std::chrono::milliseconds>::value, "" );
44 std::chrono::milliseconds ms = 247ms; local
45 assert ( ms == std::chrono::milliseconds(247));
46 auto ms2 = 247.0ms;
47 assert ( ms == ms2 );
literals1.pass.cpp 34 milliseconds ms = 247ms; local
35 assert ( ms == milliseconds(247));
36 auto ms2 = 247.0ms;
37 assert ( ms == ms2 );
literals2.pass.cpp 36 std::chrono::milliseconds ms = 247ms; local
37 assert ( ms == std::chrono::milliseconds(247));
38 auto ms2 = 247.0ms;
39 assert ( ms == ms2 );
  /external/llvm/unittests/Support/
ManagedStatic.cpp 25 llvm::ManagedStatic<int> ms; member in namespace:__anon28399::test1
27 *ms;
  /external/mesa3d/src/gallium/state_trackers/clover/core/
program.cpp 73 const std::vector<module> ms = map([&](const program &prog) { local
80 tgsi::link_program(ms) :
81 llvm::link_program(ms, dev.ir_format(),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/thread/thread.condition/
PR30202_notify_from_pthread_created_thread.pass.cpp 37 typedef std::chrono::milliseconds ms; typedef
44 std::this_thread::sleep_for(ms(300));
61 assert(t1-t0 > ms(250));
73 assert(t1-t0 > ms(250));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.shared_future/
wait.pass.cpp 46 typedef std::chrono::duration<double, std::milli> ms; typedef
59 assert(t1-t0 < ms(5));
73 assert(t1-t0 < ms(5));
87 assert(t1-t0 < ms(5));
wait_for.pass.cpp 24 typedef std::chrono::milliseconds ms; typedef
28 std::this_thread::sleep_for(ms(500));
36 std::this_thread::sleep_for(ms(500));
43 std::this_thread::sleep_for(ms(500));
56 assert(f.wait_for(ms(300)) == std::future_status::timeout);
58 assert(f.wait_for(ms(300)) == std::future_status::ready);
64 assert(t1-t0 < ms(5));
72 assert(f.wait_for(ms(300)) == std::future_status::timeout);
74 assert(f.wait_for(ms(300)) == std::future_status::ready);
80 assert(t1-t0 < ms(5))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.unique_future/
wait.pass.cpp 46 typedef std::chrono::duration<double, std::milli> ms; typedef
59 assert(t1-t0 < ms(5));
73 assert(t1-t0 < ms(5));
87 assert(t1-t0 < ms(5));
wait_for.pass.cpp 24 typedef std::chrono::milliseconds ms; typedef
28 std::this_thread::sleep_for(ms(500));
36 std::this_thread::sleep_for(ms(500));
43 std::this_thread::sleep_for(ms(500));
56 assert(f.wait_for(ms(300)) == std::future_status::timeout);
58 assert(f.wait_for(ms(300)) == std::future_status::ready);
64 assert(t1-t0 < ms(50));
72 assert(f.wait_for(ms(300)) == std::future_status::timeout);
74 assert(f.wait_for(ms(300)) == std::future_status::ready);
80 assert(t1-t0 < ms(50))
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex.pass.cpp 35 typedef std::chrono::milliseconds ms; typedef
38 ms WaitTime = ms(250);
44 ms Tolerance = ms(50);
46 ms Tolerance = ms(50 * 5);

Completed in 827 milliseconds

1 2 34 5 6 7 8 91011>>