Lines Matching refs:__t
286 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = 0;}
287 thread& operator=(thread&& __t) _NOEXCEPT;
291 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
330 __thread_execute(tuple<_Fp, _Args...>& __t, __tuple_indices<_Indices...>)
332 __invoke(_VSTD::move(_VSTD::get<0>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
390 thread::operator=(thread&& __t) _NOEXCEPT
394 __t_ = __t.__t_;
395 __t.__t_ = 0;
432 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
438 while (_Clock::now() < __t)
439 __cv.wait_until(__lk, __t);
445 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t)
448 sleep_for(__t - steady_clock::now());