Home
last modified time | relevance | path

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

/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/llvm-project/libcxx/test/std/thread/thread.mutex/thread.lock/thread.lock.unique/thread.lock.unique.locking/
Dtry_lock_for.pass.cpp30 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/
Dtry_lock_for.pass.cpp31 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/
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);
402 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/llvm-project/libcxx/include/
Dcondition_variable51 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,
Dshared_mutex57 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);
Dmutex65 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);
Dsemaphore34 bool try_acquire_for(const chrono::duration<Rep, Period>& rel_time);
Dfuture169 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;
Dthread77 void sleep_for(const chrono::duration<Rep, Period>& rel_time);
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dbugprone-spuriously-wake-up-functions.cpp100 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/
Danalyzer_cli.py568 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))
Danalyzer_cli_test.py221 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/
Dsession_debug_testlib.py534 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/
Dwsi_common_display.c175 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()