HomeSort by relevance Sort by last modified time
    Searched full:chrono (Results 326 - 350 of 542) sorted by null

<<11121314151617181920>>

  /system/extras/simpleperf/
cpu_hotplug_test.cpp 26 #include <chrono>
165 auto end_time = std::chrono::steady_clock::now() + std::chrono::seconds(timeout);
167 while (std::chrono::steady_clock::now() < end_time) {
207 const std::chrono::hours test_duration(10); // Test for 10 hours.
211 auto end_time = std::chrono::steady_clock::now() + test_duration;
213 while (std::chrono::steady_clock::now() < end_time) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
thread 38 #include <chrono>
264 __sleep_for(chrono::seconds, chrono::nanoseconds);
269 sleep_for(const chrono::duration<_Rep, _Period>& __rtime)
271 auto __s = chrono::duration_cast<chrono::seconds>(__rtime);
272 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__rtime - __s);
288 sleep_until(const chrono::time_point<_Clock, _Duration>& __atime)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
thread 38 #include <chrono>
264 __sleep_for(chrono::seconds, chrono::nanoseconds);
269 sleep_for(const chrono::duration<_Rep, _Period>& __rtime)
271 auto __s = chrono::duration_cast<chrono::seconds>(__rtime);
272 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__rtime - __s);
288 sleep_until(const chrono::time_point<_Clock, _Duration>& __atime)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
thread 38 #include <chrono>
264 __sleep_for(chrono::seconds, chrono::nanoseconds);
269 sleep_for(const chrono::duration<_Rep, _Period>& __rtime)
271 auto __s = chrono::duration_cast<chrono::seconds>(__rtime);
272 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__rtime - __s);
288 sleep_until(const chrono::time_point<_Clock, _Duration>& __atime)
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
thread 38 #include <chrono>
264 __sleep_for(chrono::seconds, chrono::nanoseconds);
269 sleep_for(const chrono::duration<_Rep, _Period>& __rtime)
271 auto __s = chrono::duration_cast<chrono::seconds>(__rtime);
272 auto __ns = chrono::duration_cast<chrono::nanoseconds>(__rtime - __s);
288 sleep_until(const chrono::time_point<_Clock, _Duration>& __atime)
  /device/google/contexthub/util/nanotool/
log.h 22 #include <chrono>
87 static std::chrono::time_point<std::chrono::steady_clock> init_time_;
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvar/
notify_one.pass.cpp 54 std::this_thread::sleep_for(std::chrono::milliseconds(100));
62 std::this_thread::sleep_for(std::chrono::milliseconds(100));
79 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /external/libcxx/test/std/thread/thread.condition/thread.condition.condvarany/
notify_one.pass.cpp 58 std::this_thread::sleep_for(std::chrono::milliseconds(100));
66 std::this_thread::sleep_for(std::chrono::milliseconds(100));
83 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex.pass.cpp 28 typedef std::chrono::system_clock Clock;
31 typedef std::chrono::milliseconds ms;
32 typedef std::chrono::nanoseconds ns;
mutex_try_to_lock.pass.cpp 28 typedef std::chrono::system_clock Clock;
31 typedef std::chrono::milliseconds ms;
32 typedef std::chrono::nanoseconds ns;
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
lock.pass.cpp 28 typedef std::chrono::system_clock Clock;
31 typedef std::chrono::milliseconds ms;
32 typedef std::chrono::nanoseconds ns;
try_lock_for.pass.cpp 17 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
26 typedef std::chrono::milliseconds ms;
31 bool try_lock_shared_for(const std::chrono::duration<Rep, Period>& rel_time)
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.cons/
mutex_try_to_lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
28 typedef std::chrono::milliseconds ms;
29 typedef std::chrono::nanoseconds ns;
  /external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
lock.pass.cpp 25 typedef std::chrono::system_clock Clock;
28 typedef std::chrono::milliseconds ms;
29 typedef std::chrono::nanoseconds ns;
try_lock_for.pass.cpp 17 // bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
24 typedef std::chrono::milliseconds ms;
29 bool try_lock_for(const std::chrono::duration<Rep, Period>& rel_time)
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.shared_mutex.requirements/thread.shared_mutex.class/
lock_shared.pass.cpp 27 typedef std::chrono::system_clock Clock;
30 typedef std::chrono::milliseconds ms;
31 typedef std::chrono::nanoseconds ns;
try_lock.pass.cpp 26 typedef std::chrono::system_clock Clock;
29 typedef std::chrono::milliseconds ms;
30 typedef std::chrono::nanoseconds ns;
try_lock_shared.pass.cpp 27 typedef std::chrono::system_clock Clock;
30 typedef std::chrono::milliseconds ms;
31 typedef std::chrono::nanoseconds ns;
  /external/libcxx/test/std/thread/thread.mutex/thread.mutex.requirements/thread.sharedtimedmutex.requirements/thread.sharedtimedmutex.class/
lock_shared.pass.cpp 27 typedef std::chrono::system_clock Clock;
30 typedef std::chrono::milliseconds ms;
31 typedef std::chrono::nanoseconds ns;
try_lock.pass.cpp 26 typedef std::chrono::system_clock Clock;
29 typedef std::chrono::milliseconds ms;
30 typedef std::chrono::nanoseconds ns;
try_lock_shared.pass.cpp 27 typedef std::chrono::system_clock Clock;
30 typedef std::chrono::milliseconds ms;
31 typedef std::chrono::nanoseconds ns;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvar/
notify_one.pass.cpp 52 std::this_thread::sleep_for(std::chrono::milliseconds(100));
60 std::this_thread::sleep_for(std::chrono::milliseconds(100));
77 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.condition/thread.condition.condvarany/
notify_one.pass.cpp 56 std::this_thread::sleep_for(std::chrono::milliseconds(100));
64 std::this_thread::sleep_for(std::chrono::milliseconds(100));
81 std::this_thread::sleep_for(std::chrono::milliseconds(100));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.cons/
mutex.pass.cpp 26 typedef std::chrono::system_clock Clock;
29 typedef std::chrono::milliseconds ms;
30 typedef std::chrono::nanoseconds ns;
mutex_try_to_lock.pass.cpp 26 typedef std::chrono::system_clock Clock;
29 typedef std::chrono::milliseconds ms;
30 typedef std::chrono::nanoseconds ns;

Completed in 1682 milliseconds

<<11121314151617181920>>