/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/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/ |
D | try_lock_for.pass.cpp | 30 bool try_lock_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_for() 32 assert(rel_time == ms(5)); in try_lock_for()
|
/external/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.shared/thread.lock.shared.locking/ |
D | try_lock_for.pass.cpp | 31 bool try_lock_shared_for(const std::chrono::duration<Rep, Period>& rel_time) in try_lock_shared_for() 33 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); 402 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/llvm-project/libcxx/include/ |
D | condition_variable | 51 const chrono::duration<Rep, Period>& rel_time); 56 const chrono::duration<Rep, Period>& rel_time, 96 const chrono::duration<Rep, Period>& rel_time); 101 const chrono::duration<Rep, Period>& rel_time,
|
D | shared_mutex | 57 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 67 try_lock_shared_for(const chrono::duration<Rep, Period>& rel_time); 91 const chrono::duration<Rep, Period>& rel_time); 103 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 402 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
D | mutex | 65 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 83 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time); 139 unique_lock(mutex_type& m, const chrono::duration<Rep, Period>& rel_time); 152 bool try_lock_for(const chrono::duration<Rep, Period>& rel_time);
|
D | semaphore | 34 bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time);
|
D | future | 169 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 196 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 223 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 250 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 277 wait_for(const chrono::duration<Rep, Period>& rel_time) const; 304 wait_for(const chrono::duration<Rep, Period>& rel_time) const;
|
D | thread | 77 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-spuriously-wake-up-functions.cpp | 100 const chrono::duration<Rep, Period> &rel_time){}; in wait_for() argument 103 const chrono::duration<Rep, Period> &rel_time, in wait_for() argument
|
/external/tensorflow/tensorflow/python/debug/cli/ |
D | analyzer_cli.py | 568 rel_time = (dump.timestamp - self._debug_dump.t0) / 1000.0 573 line = "[%.3f]" % rel_time 1018 rel_time = (datum.timestamp - self._debug_dump.t0) / 1000.0 1019 lines.append("#%d [%.3f ms] %s" % (i, rel_time, datum.watch_key))
|
D | analyzer_cli_test.py | 221 rel_time = float(items[0][1:-1]) 222 tst.assertGreaterEqual(rel_time, 0.0) 224 tensor_timestamps.append(rel_time)
|
/external/tensorflow/tensorflow/python/debug/lib/ |
D | session_debug_testlib.py | 534 for rel_time, dump_size_bytes in zip(while_id_rel_timestamps, 536 self.assertGreaterEqual(rel_time, prev_rel_time) 538 prev_rel_time = rel_time
|
/external/mesa3d/src/vulkan/wsi/ |
D | wsi_common_display.c | 175 static uint64_t wsi_rel_to_abs_time(uint64_t rel_time) in wsi_rel_to_abs_time() argument 180 if (rel_time > UINT64_MAX - current_time) in wsi_rel_to_abs_time() 183 return current_time + rel_time; in wsi_rel_to_abs_time()
|