Searched refs:rel_time (Results 1 – 14 of 14) sorted by relevance
/external/v8/src/base/platform/ |
D | semaphore.cc | 53 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;
|
D | condition-variable.cc | 81 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;
|
D | semaphore.h | 50 bool WaitFor(const TimeDelta& rel_time) WARN_UNUSED_RESULT;
|
D | condition-variable.h | 60 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/ |
D | try_lock_for.pass.cpp | 31 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/ |
D | try_lock_for.pass.cpp | 32 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/ |
D | condition_variable | 52 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,
|
D | shared_mutex | 58 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);
|
D | mutex | 66 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);
|
D | future | 170 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;
|
D | thread | 80 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | analyzer_cli.py | 550 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))
|
D | analyzer_cli_test.py | 218 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/ |
D | session_debug_testlib.py | 533 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
|