Lines Matching refs:__t
288 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = 0;}
289 thread& operator=(thread&& __t) _NOEXCEPT;
293 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
332 __thread_execute(tuple<_Fp, _Args...>& __t, __tuple_indices<_Indices...>)
334 __invoke(_VSTD::move(_VSTD::get<0>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
392 thread::operator=(thread&& __t) _NOEXCEPT
396 __t_ = __t.__t_;
397 __t.__t_ = 0;
434 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
440 while (_Clock::now() < __t)
441 __cv.wait_until(__lk, __t);
447 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t)
450 sleep_for(__t - steady_clock::now());