Searched refs:abs_time (Results 1 – 11 of 11) sorted by relevance
/external/virglrenderer/src/gallium/include/c11/ |
D | threads_posix.h | 137 struct timespec abs_time; in cnd_timedwait() local 144 abs_time.tv_sec = xt->sec; in cnd_timedwait() 145 abs_time.tv_nsec = xt->nsec; in cnd_timedwait() 147 rt = pthread_cond_timedwait(cond, mtx, &abs_time); in cnd_timedwait()
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | try_lock_until.pass.cpp | 29 bool try_lock_until(const std::chrono::time_point<Clock, Duration>& abs_time) in try_lock_until() 32 assert(Clock::now() - abs_time < ms(5)); in try_lock_until()
|
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | try_lock_until.pass.cpp | 30 bool try_lock_shared_until(const std::chrono::time_point<Clock, Duration>& abs_time) in try_lock_shared_until() 33 assert(Clock::now() - abs_time < ms(5)); in try_lock_shared_until()
|
/external/mesa3d/include/c11/ |
D | threads_posix.h | 135 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() argument 141 assert(abs_time != NULL); in cnd_timedwait() 143 rt = pthread_cond_timedwait(cond, mtx, abs_time); in cnd_timedwait()
|
D | threads_win32.h | 395 cnd_timedwait(cnd_t *cond, mtx_t *mtx, const struct timespec *abs_time) in cnd_timedwait() argument 397 if (!cond || !mtx || !abs_time) return thrd_error; in cnd_timedwait() 399 if (SleepConditionVariableCS(&cond->condvar, mtx, impl_timespec2msec(abs_time))) in cnd_timedwait() 403 return impl_cond_do_wait(cond, mtx, abs_time); in cnd_timedwait()
|
/external/libcxx/include/ |
D | condition_variable | 41 const chrono::time_point<Clock, Duration>& abs_time); 46 const chrono::time_point<Clock, Duration>& abs_time, 86 const chrono::time_point<Clock, Duration>& abs_time); 91 const chrono::time_point<Clock, Duration>& abs_time,
|
D | shared_mutex | 60 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 71 try_lock_shared_until(const chrono::time_point<Clock, Duration>& abs_time); 89 const chrono::time_point<Clock, Duration>& abs_time); 106 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 404 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
|
D | mutex | 68 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 86 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time); 138 unique_lock(mutex_type& m, const chrono::time_point<Clock, Duration>& abs_time); 155 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
|
D | future | 173 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const; 200 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const; 227 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const; 254 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const; 281 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const; 308 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
|
D | thread | 77 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
|
/external/python/cpython2/Tools/pybench/ |
D | pybench.py | 545 (eff_time, abs_time, min_overhead) = test.last_timing 550 abs_time * MILLI_SECONDS,
|