Home
last modified time | relevance | path

Searched refs:rel_time (Results 1 – 14 of 14) sorted by relevance

/external/v8/src/base/platform/
Dsemaphore.cc53 bool Semaphore::WaitFor(const TimeDelta& rel_time) { in WaitFor() argument
55 TimeTicks end = now + rel_time; in WaitFor()
109 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
111 const Time time = Time::NowFromSystemTime() + rel_time;
165 bool Semaphore::WaitFor(const TimeDelta& rel_time) {
167 TimeTicks end = now + rel_time;
Dcondition-variable.cc81 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) { in WaitFor() argument
88 ts = rel_time.ToTimespec(); in WaitFor()
105 Time end_time = now + rel_time; in WaitFor()
292 bool ConditionVariable::WaitFor(Mutex* mutex, const TimeDelta& rel_time) {
301 TimeTicks end = now + rel_time;
Dsemaphore.h50 bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
Dcondition-variable.h60 bool WaitFor(Mutex* mutex, const TimeDelta& rel_time) WARN_UNUSED_RESULT;
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock_for.pass.cpp31 bool try_lock_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_for()
33 assert(rel_time == ms(5)); in try_lock_for()
/external/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/
Dtry_lock_for.pass.cpp32 bool try_lock_shared_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_shared_for()
34 assert(rel_time == ms(5)); in try_lock_shared_for()
/external/libcxx/include/
Dcondition_variable52 const chrono::duration<Rep, Period>& rel_time);
57 const chrono::duration<Rep, Period>& rel_time,
97 const chrono::duration<Rep, Period>& rel_time);
102 const chrono::duration<Rep, Period>& rel_time,
Dshared_mutex58 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
68 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time);
92 const chrono::duration<Rep, Period>& rel_time);
104 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
400 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
Dmutex66 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
84 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
140 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time);
153 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
Dfuture170 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
197 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
224 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
251 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
278 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
305 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
Dthread80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
/external/tensorflow/tensorflow/python/debug/cli/
Danalyzer_cli.py550 rel_time = (dump.timestamp - self._debug_dump.t0) / 1000.0
555 line = "[%.3f]" % rel_time
999 rel_time = (datum.timestamp - self._debug_dump.t0) / 1000.0
1000 lines.append("#%d [%.3f ms] %s" % (i, rel_time, datum.watch_key))
Danalyzer_cli_test.py218 rel_time = float(items[0][1:-1])
219 tst.assertGreaterEqual(rel_time, 0.0)
221 tensor_timestamps.append(rel_time)
/external/tensorflow/tensorflow/python/debug/lib/
Dsession_debug_testlib.py533 for rel_time, dump_size_bytes in zip(while_id_rel_timestamps,
535 self.assertGreaterEqual(rel_time, prev_rel_time)
537 prev_rel_time = rel_time