Home
last modified time | relevance | path

Searched refs:Duration (Results 1 – 25 of 35) sorted by relevance

12

/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DStatistics.h31 using Duration = std::chrono::duration<double>;
33 Duration get() const { in get()
34 return Duration(InternalDuration(value.load(std::memory_order_relaxed))); in get()
36 operator Duration() const { return get(); } in Duration() function
38 StatsDuration &operator+=(Duration dur) {
/openbsd-src/gnu/llvm/libcxx/docs/Status/
H A DFormatPaper.csv4 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::sys_time<Duration>``",,Mark de Weve…
5 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::utc_time<Duration>``",A ``<chrono>`…
6 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::tai_time<Duration>``",A ``<chrono>`…
7 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::gps_time<Duration>``",A ``<chrono>`…
8 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::file_time<Duration>``",,Not assigne…
9 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::local_time<Duration>``",,Not assign…
10 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::local-time-format-t<Duration>``",A …
29 `[time.syn] <https://wg21.link/time.syn>`_,"Formatter ``chrono::zoned_time<Duration, TimeZonePtr>``…
/openbsd-src/gnu/llvm/libcxx/include/
H A Dcondition_variable37 template <class Clock, class Duration>
40 const chrono::time_point<Clock, Duration>& abs_time);
42 template <class Clock, class Duration, class Predicate>
45 const chrono::time_point<Clock, Duration>& abs_time,
82 template <class Lock, class Clock, class Duration>
85 const chrono::time_point<Clock, Duration>& abs_time);
87 template <class Lock, class Clock, class Duration, class Predicate>
90 const chrono::time_point<Clock, Duration>& abs_time,
H A Dshared_mutex58 template <class Clock, class Duration>
59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
68 template <class Clock, class Duration>
70 try_lock_shared_until(const chrono::time_point<Clock, Duration>& abs_time);
86 template <class Clock, class Duration>
88 const chrono::time_point<Clock, Duration>& abs_time);
104 template <class Clock, class Duration>
105 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
404 template <class Clock, class Duration>
405 bool try_lock_until(const chrono::time_point<Clock, Duration>& __abs_time);
H A Dchrono108 template <class Clock, class Duration = typename Clock::duration>
113 typedef Duration duration;
246 template <class ToDuration, class Clock, class Duration>
247 time_point<Clock, ToDuration> time_point_cast(const time_point<Clock, Duration>& t);
249 template <class ToDuration, class Clock, class Duration>
251 floor(const time_point<Clock, Duration>& tp); // C++17
253 template <class ToDuration, class Clock, class Duration>
255 ceil(const time_point<Clock, Duration>& tp); // C++17
257 template <class ToDuration, class Clock, class Duration>
259 round(const time_point<Clock, Duration>& tp); // C++17
[all …]
H A Dsemaphore35 template<class Clock, class Duration>
36 bool try_acquire_until(const chrono::time_point<Clock, Duration>& abs_time);
171 template <class Clock, class Duration>
173 bool try_acquire_until(chrono::time_point<Clock, Duration> const& __abs_time)
H A Dmutex66 template <class Clock, class Duration>
67 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
84 template <class Clock, class Duration>
85 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
136 template <class Clock, class Duration>
137 unique_lock(mutex_type& m, const chrono::time_point<Clock, Duration>& abs_time);
153 template <class Clock, class Duration>
154 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
H A Dfuture170 template <class Clock, class Duration>
172 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
197 template <class Clock, class Duration>
199 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
224 template <class Clock, class Duration>
226 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
251 template <class Clock, class Duration>
253 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
278 template <class Clock, class Duration>
280 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
[all …]
H A Dthread74 template <class Clock, class Duration>
75 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DCachePruning.cpp52 static Expected<std::chrono::seconds> parseDuration(StringRef Duration) { in parseDuration() argument
53 if (Duration.empty()) in parseDuration()
57 StringRef NumStr = Duration.slice(0, Duration.size()-1); in parseDuration()
63 switch (Duration.back()) { in parseDuration()
71 return make_error<StringError>("'" + Duration + in parseDuration()
H A DTimeProfiler.cpp123 DurationType Duration = E.End - E.Start; in end() local
126 if (duration_cast<microseconds>(Duration).count() >= TimeTraceGranularity) in end()
140 CountAndTotal.second += Duration; in end()
H A Draw_ostream.cpp885 raw_fd_ostream::tryLockFor(Duration const& Timeout) { in tryLockFor()
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DDuration.h20 class Duration {
23 Duration(std::chrono::milliseconds Value) : Value(Value) {} in Duration() function
H A Draw_ostream.h31 class Duration; variable
588 tryLockFor(Duration const &Timeout);
/openbsd-src/gnu/llvm/libcxx/include/__chrono/
H A Dcalendar.h29 template<class Duration>
30 using local_time = time_point<local_t, Duration>;
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h190 lldb_private::StatsDuration::Duration GetDebugInfoParseTime() override;
191 lldb_private::StatsDuration::Duration GetDebugInfoIndexTime() override;
H A DSymbolFile.h376 virtual StatsDuration::Duration GetDebugInfoParseTime() { return {}; } in GetDebugInfoParseTime()
383 virtual StatsDuration::Duration GetDebugInfoIndexTime() { return {}; } in GetDebugInfoIndexTime()
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h67 StatsDuration::Duration GetIndexTime() { return m_index_time; } in GetIndexTime()
H A DSymbolFileDWARF.h325 lldb_private::StatsDuration::Duration GetDebugInfoParseTime() override { in GetDebugInfoParseTime()
328 lldb_private::StatsDuration::Duration GetDebugInfoIndexTime() override;
/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp559 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoParseTime() { in GetDebugInfoParseTime()
566 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoIndexTime() { in GetDebugInfoIndexTime()
/openbsd-src/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h594 StatsDuration::Duration GetResolveTime() const { return m_resolve_time; } in GetResolveTime()
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DStatistics.cpp37 StatsDuration::Duration elapsed = in elapsed()
/openbsd-src/gnu/llvm/libcxx/docs/DesignDocs/
H A DFileTimeType.rst297 template <class Duration>
298 Duration convert_to_duration(timespec ts) {
299 Duration dur({ts.tv_sec, ts.tv_nsec}); // Oops! Period may not be nanoseconds.
/openbsd-src/share/misc/
H A Dusb_hid_usages716 0x14A Call Duration
1281 0x11 Duration List
1320 0x50 Duration
1925 0x596 Data Field: Step Duration
2625 0x7A Aim Duration
2626 0x7B Good Read Lamp Duration
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGExpr.cpp293 switch (StorageDuration Duration = M->getStorageDuration()) { in pushTemporaryCleanup() local
320 if (Duration == SD_FullExpression) in pushTemporaryCleanup()

12