Lines Matching refs:__t
245 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {
246 __t.__t_ = _LIBCPP_NULL_THREAD;
250 thread& operator=(thread&& __t) _NOEXCEPT {
253 __t_ = __t.__t_;
254 __t.__t_ = _LIBCPP_NULL_THREAD;
259 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);}
278 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>)
280 _VSTD::__invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...);
386 sleep_until(const chrono::time_point<_Clock, _Duration>& __t)
391 while (_Clock::now() < __t)
392 __cv.wait_until(__lk, __t);
398 sleep_until(const chrono::time_point<chrono::steady_clock, _Duration>& __t)
400 this_thread::sleep_for(__t - chrono::steady_clock::now());