/netbsd-src/external/apache2/llvm/dist/libcxx/src/ |
H A D | chrono.cpp | 161 static steady_clock::rep steady_simplified() { in steady_simplified() 162 return static_cast<steady_clock::rep>(mach_absolute_time()); in steady_simplified() 170 static steady_clock::rep steady_full() { in steady_full() 172 return static_cast<steady_clock::rep>(mach_absolute_time() * factor); in steady_full() 175 typedef steady_clock::rep (*FP)(); 185 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now() 187 return steady_clock::time_point(steady_clock::duration(fp())); in __libcpp_steady_clock_now() 197 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now() 201 return steady_clock::time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec)); in __libcpp_steady_clock_now() 221 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | TimeProfiler.cpp | 42 typedef duration<steady_clock::rep, steady_clock::period> DurationType; 43 typedef time_point<steady_clock> TimePointType; 62 steady_clock::rep getFlameGraphStartUs(TimePointType StartTime) const { in getFlameGraphStartUs() 68 steady_clock::rep getFlameGraphDurUs() const { in getFlameGraphDurUs() 78 : BeginningOfTime(system_clock::now()), StartTime(steady_clock::now()), in TimeTraceProfiler() 85 Stack.emplace_back(steady_clock::now(), TimePointType(), std::move(Name), in begin() 92 E.End = steady_clock::now(); in end()
|
H A D | LockFileManager.cpp | 310 auto StartTime = std::chrono::steady_clock::now(); in waitForUnlock() 340 std::chrono::steady_clock::now() - StartTime) in waitForUnlock()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/std/ |
H A D | condition_variable | 69 using steady_clock = chrono::steady_clock; 72 using __clock_t = steady_clock; 109 const chrono::time_point<steady_clock, _Duration>& __atime) 161 using __dur = typename steady_clock::duration; 163 steady_clock::now() + 173 using __dur = typename steady_clock::duration; 175 steady_clock::now() + 189 const chrono::time_point<steady_clock, _Dur>& __atime) 202 return (steady_clock::now() < __atime 244 using __clock_t = chrono::steady_clock; [all …]
|
H A D | shared_mutex | 459 using __clock_t = chrono::steady_clock; 534 try_lock_until(const chrono::time_point<chrono::steady_clock, 566 // steady_clock, so we must loop in order to guarantee that 621 try_lock_shared_until(const chrono::time_point<chrono::steady_clock, 654 // steady_clock, so we must loop in order to guarantee that
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/std/ |
H A D | condition_variable | 73 using steady_clock = chrono::steady_clock; 76 using __clock_t = steady_clock; 118 const chrono::time_point<steady_clock, _Duration>& __atime) 168 using __dur = typename steady_clock::duration; 172 return wait_until(__lock, steady_clock::now() + __reltime); 181 using __dur = typename steady_clock::duration; 185 return wait_until(__lock, steady_clock::now() + __reltime, 198 const chrono::time_point<steady_clock, _Dur>& __atime) 213 return (steady_clock::now() < __atime 256 using __clock_t = chrono::steady_clock; [all …]
|
H A D | shared_mutex | 454 using __clock_t = chrono::steady_clock; 529 try_lock_until(const chrono::time_point<chrono::steady_clock, 561 // steady_clock, so we must loop in order to guarantee that 616 try_lock_shared_until(const chrono::time_point<chrono::steady_clock, 649 // steady_clock, so we must loop in order to guarantee that
|
H A D | mutex | 142 using __clock = chrono::steady_clock; 172 _M_try_lock_until(const chrono::time_point<chrono::steady_clock, 196 // steady_clock, so we must loop in order to guarantee that
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
H A D | chrono.cc | 77 constexpr bool steady_clock::is_steady; 79 steady_clock::time_point 80 steady_clock::now() noexcept in now()
|
H A D | compatibility-chrono.cc | 34 #define steady_clock steady_clockXX macro 37 #undef steady_clock
|
H A D | thread.cc | 207 const auto target = chrono::steady_clock::now() + __s + __ns; in __sleep_for() 230 const auto now = chrono::steady_clock::now(); in __sleep_for()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/ |
H A D | chrono.cc | 76 constexpr bool steady_clock::is_steady; 78 steady_clock::time_point 79 steady_clock::now() noexcept in now()
|
H A D | compatibility-chrono.cc | 38 #define steady_clock steady_clockXX macro 41 #undef steady_clock
|
H A D | thread.cc | 218 const auto target = chrono::steady_clock::now() + __s + __ns; in __sleep_for() 241 const auto now = chrono::steady_clock::now(); in __sleep_for()
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
H A D | atomic_timed_wait.h | 52 using __wait_clock_t = chrono::steady_clock; in _GLIBCXX_VISIBILITY() 148 static_assert(std::__is_one_of<_Clock, chrono::steady_clock, in _GLIBCXX_VISIBILITY() 161 if constexpr (is_same_v<chrono::steady_clock, _Clock>) in _GLIBCXX_VISIBILITY() 176 if constexpr (is_same_v<_Clock, chrono::steady_clock>) in _GLIBCXX_VISIBILITY() 356 chrono::steady_clock::now() + __reltime); in _GLIBCXX_VISIBILITY() 375 chrono::steady_clock::now() + __reltime); in _GLIBCXX_VISIBILITY()
|
H A D | atomic_futex.h | 73 typedef chrono::steady_clock __clock_t; in _GLIBCXX_VISIBILITY() 184 const chrono::time_point<std::chrono::steady_clock, _Dur>& __atime) in _GLIBCXX_VISIBILITY() 263 const chrono::time_point<std::chrono::steady_clock, _Duration>& __atime) in _GLIBCXX_VISIBILITY()
|
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
H A D | netfwd | 75 typedef basic_waitable_timer<chrono::steady_clock> steady_timer; 87 template<typename _Protocol, typename _Clock = chrono::steady_clock, 90 template<typename _Protocol, typename _Clock = chrono::steady_clock,
|
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
H A D | netfwd | 75 typedef basic_waitable_timer<chrono::steady_clock> steady_timer; 87 template<typename _Protocol, typename _Clock = chrono::steady_clock, 90 template<typename _Protocol, typename _Clock = chrono::steady_clock,
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | __mutex_base | 331 chrono::time_point<chrono::steady_clock, chrono::nanoseconds>) _NOEXCEPT; 450 steady_clock::time_point __c_now = steady_clock::now(); 453 using __clock_tp_ns = time_point<steady_clock, nanoseconds>; 468 return steady_clock::now() - __c_now < __d ? cv_status::no_timeout : 479 return wait_until(__lk, chrono::steady_clock::now() + __d, 487 chrono::time_point<chrono::steady_clock, chrono::nanoseconds> __tp) _NOEXCEPT
|
H A D | condition_variable | 247 return wait_until(__lock, chrono::steady_clock::now() + __d); 257 return wait_until(__lock, chrono::steady_clock::now() + __d,
|
H A D | thread | 397 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t) 399 this_thread::sleep_for(__t - chrono::steady_clock::now());
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/cmake/ |
H A D | steady_clock.cpp | 4 typedef std::chrono::steady_clock Clock; in main()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/ |
H A D | steady_clock.cpp | 4 typedef std::chrono::steady_clock Clock; in main()
|
/netbsd-src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
H A D | timers.h | 26 typedef std::chrono::steady_clock type;
|
/netbsd-src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
H A D | timers.h | 26 typedef std::chrono::steady_clock type;
|