Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/libcxx/include/
H A Dchrono110 template <class Clock, class Duration = typename Clock::duration>
115 typedef Duration duration;
256 template <class ToDuration, class Clock, class Duration>
257 time_point<Clock, ToDuration> time_point_cast(const time_point<Clock, Duration>& t);
259 template <class ToDuration, class Clock, class Duration>
261 floor(const time_point<Clock, Duration>& tp); // C++17
263 template <class ToDuration, class Clock, class Duration>
265 ceil(const time_point<Clock, Duration>& tp); // C++17
267 template <class ToDuration, class Clock, class Duration>
269 round(const time_point<Clock, Duration>& tp); // C++17
[all …]
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,
108 template <class Lock, class Clock, class Duration, class Predicate>
110 … const chrono::time_point<Clock, Duration>& abs_time, Predicate pred); // since C++20
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);
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 Dthread77 template <class Clock, class Duration>
78 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
H A Dsemaphore35 template<class Clock, class Duration>
36 bool try_acquire_until(const chrono::time_point<Clock, Duration>& abs_time);
H A Dfuture171 template <class Clock, class Duration>
173 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
198 template <class Clock, class Duration>
200 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
225 template <class Clock, class Duration>
227 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
252 template <class Clock, class Duration>
254 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
279 template <class Clock, class Duration>
281 wait_until(const chrono::time_point<Clock, Duration>& abs_time) const;
[all …]
/freebsd/contrib/llvm-project/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) {
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/
H A DAlarm.h29 using Duration = std::chrono::milliseconds; variable
31 Alarm(Duration timeout, bool run_callback_on_exit = false);
88 Duration m_timeout;
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp52 static Expected<std::chrono::seconds> parseDuration(StringRef Duration) { in parseDuration() argument
53 if (Duration.empty()) in parseDuration()
54 return make_error<StringError>("Duration must not be 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.cpp145 DurationType Duration = E.End - E.Start; in end() local
148 if (duration_cast<microseconds>(Duration).count() >= TimeTraceGranularity) in end()
162 CountAndTotal.second += Duration; in end()
/freebsd/contrib/llvm-project/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
605 tryLockFor(Duration const &Timeout);
/freebsd/contrib/kyua/integration/
H A Dcmd_report_junit_test.sh117 Duration: S.UUUs
157 Duration: S.UUUs
235 Duration: S.UUUs
275 Duration: S.UUUs
/freebsd/sys/contrib/device-tree/Bindings/input/
H A Dti,palmas-pwrbutton.txt16 - ti,palmas-long-press-seconds: Duration in seconds which the power
20 - ti,palmas-pwron-debounce-milli-seconds: Duration in milliseconds
/freebsd/sys/contrib/device-tree/Bindings/watchdog/
H A Dziirave-wdt.txt9 - reset-duration-ms: Duration of the pulse generated when the watchdog times
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h182 lldb_private::StatsDuration::Duration GetDebugInfoParseTime() override;
183 lldb_private::StatsDuration::Duration GetDebugInfoIndexTime() override;
H A DSymbolFile.h408 virtual StatsDuration::Duration GetDebugInfoParseTime() { return {}; } in GetDebugInfoParseTime()
415 virtual StatsDuration::Duration GetDebugInfoIndexTime() { return {}; } in GetDebugInfoIndexTime()
/freebsd/sys/contrib/device-tree/Bindings/leds/
H A Dleds-trigger-pattern.txt5 specified duration. Duration of 0 means brightness should immediately change to
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp2108 template<typename Clock, typename Duration>
2109 struct StringMaker<std::chrono::time_point<Clock, Duration>> {
2110 static std::string convert(std::chrono::time_point<Clock, Duration> const& time_point) { in convert()
2115 template<typename Duration>
2116 struct StringMaker<std::chrono::time_point<std::chrono::system_clock, Duration>> {
2117 …static std::string convert(std::chrono::time_point<std::chrono::system_clock, Duration> const& tim… in convert()
2412 template <typename Duration = std::chrono::duration<double, std::nano>>
5368 template <typename Duration>
5370 Duration point;
5371 Duration lower_bound;
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFIndex.h77 StatsDuration::Duration GetIndexTime() { return m_index_time; } in GetIndexTime()
H A DSymbolFileDWARF.h314 StatsDuration::Duration GetDebugInfoParseTime() override { in GetDebugInfoParseTime()
317 StatsDuration::Duration GetDebugInfoIndexTime() override;
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DAlarm.cpp17 Alarm::Alarm(Duration timeout, bool run_callback_on_exit) in Alarm()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DSymbolFileOnDemand.cpp544 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoParseTime() { in GetDebugInfoParseTime()
551 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoIndexTime() { in GetDebugInfoIndexTime()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h592 StatsDuration::Duration GetResolveTime() const { return m_resolve_time; } in GetResolveTime()

12