Home
last modified time | relevance | path

Searched refs:__now (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dthis_thread_sleep.h95 auto __now = _Clock::now(); in _GLIBCXX_VISIBILITY() local
98 if (__now < __atime) in _GLIBCXX_VISIBILITY()
99 sleep_for(__atime - __now); in _GLIBCXX_VISIBILITY()
102 while (__now < __atime) in _GLIBCXX_VISIBILITY()
104 sleep_for(__atime - __now); in _GLIBCXX_VISIBILITY()
105 __now = _Clock::now(); in _GLIBCXX_VISIBILITY()
Datomic_timed_wait.h240 auto __now = __wait_clock_t::now(); in _GLIBCXX_VISIBILITY() local
241 if (_M_deadline <= __now) in _GLIBCXX_VISIBILITY()
246 auto __elapsed = __now - _M_t0; in _GLIBCXX_VISIBILITY()
307 for (auto __now = _Clock::now(); __now < __atime; in _GLIBCXX_VISIBILITY() local
308 __now = _Clock::now()) in _GLIBCXX_VISIBILITY()
316 __timed_backoff_spin_policy(__atime, __now))) in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dshared_mutex568 typename _Clock::time_point __now = _Clock::now();
570 auto __rtime = __atime - __now;
573 __now = _Clock::now();
574 } while (__atime > __now);
656 typename _Clock::time_point __now = _Clock::now();
658 auto __rtime = __atime - __now;
661 __now = _Clock::now();
662 } while (__atime > __now);
Dmutex212 auto __now = _Clock::now();
214 auto __rtime = __atime - __now;
217 __now = _Clock::now();
218 } while (__atime > __now);