Home
last modified time | relevance | path

Searched refs:abs_time (Results 1 – 11 of 11) sorted by relevance

/external/virglrenderer/src/gallium/include/c11/
Dthreads_posix.h137 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/
Dtry_lock_until.pass.cpp29 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/
Dtry_lock_until.pass.cpp30 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/
Dthreads_posix.h135 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()
Dthreads_win32.h395 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/
Dcondition_variable41 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,
Dshared_mutex60 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);
Dmutex68 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);
Dfuture173 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;
Dthread77 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
/external/python/cpython2/Tools/pybench/
Dpybench.py545 (eff_time, abs_time, min_overhead) = test.last_timing
550 abs_time * MILLI_SECONDS,