Lines Matching refs:__t
315 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;}
317 thread& operator=(thread&& __t) _NOEXCEPT;
321 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
340 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>)
342 __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
377 thread::operator=(thread&& __t) _NOEXCEPT
381 __t_ = __t.__t_;
382 __t.__t_ = _LIBCPP_NULL_THREAD;
454 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
460 while (_Clock::now() < __t)
461 __cv.wait_until(__lk, __t);
467 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t)
470 sleep_for(__t - steady_clock::now());