| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | Statistics.h | 31 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-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | chrono | 115 typedef Duration duration; 290 template <class Duration> 314 template<class Duration> 317 template<class Duration> 321 template<class Duration> 344 template<class Duration> 345 using local_time = time_point<local_t, Duration>; 650 template <class Duration> 731 template<class Duration, class charT> 733 template<class Duration, class charT> [all …]
|
| H A D | condition_variable | 37 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 D | shared_mutex | 58 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 D | mutex | 66 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 D | thread | 77 template <class Clock, class Duration> 78 void sleep_until(const chrono::time_point<Clock, Duration>& abs_time);
|
| H A D | semaphore | 35 template<class Clock, class Duration> 36 bool try_acquire_until(const chrono::time_point<Clock, Duration>& abs_time);
|
| H A D | future | 171 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-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | CachePruning.cpp | 52 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 D | TimeProfiler.cpp | 123 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()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Duration.h | 20 class Duration { 23 Duration(std::chrono::milliseconds Value) : Value(Value) {} in Duration() function
|
| H A D | raw_ostream.h | 31 class Duration; variable 588 tryLockFor(Duration const &Timeout);
|
| /freebsd-14.2/contrib/kyua/integration/ |
| H A D | cmd_report_junit_test.sh | 117 Duration: S.UUUs 157 Duration: S.UUUs 235 Duration: S.UUUs 275 Duration: S.UUUs
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/input/ |
| H A D | ti,palmas-pwrbutton.txt | 16 - ti,palmas-long-press-seconds: Duration in seconds which the power 20 - ti,palmas-pwron-debounce-milli-seconds: Duration in milliseconds
|
| H A D | input.yaml | 51 Duration in seconds which the key should be kept pressed for device to 57 Duration in seconds which the key should be kept pressed for device to
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/watchdog/ |
| H A D | ziirave-wdt.txt | 9 - reset-duration-ms: Duration of the pulse generated when the watchdog times
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | SymbolFileOnDemand.h | 182 lldb_private::StatsDuration::Duration GetDebugInfoParseTime() override; 183 lldb_private::StatsDuration::Duration GetDebugInfoIndexTime() override;
|
| H A D | SymbolFile.h | 400 virtual StatsDuration::Duration GetDebugInfoParseTime() { return {}; } in GetDebugInfoParseTime() 407 virtual StatsDuration::Duration GetDebugInfoIndexTime() { return {}; } in GetDebugInfoIndexTime()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/leds/ |
| H A D | leds-trigger-pattern.txt | 5 specified duration. Duration of 0 means brightness should immediately change to
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFIndex.h | 77 StatsDuration::Duration GetIndexTime() { return m_index_time; } in GetIndexTime()
|
| H A D | SymbolFileDWARF.h | 294 StatsDuration::Duration GetDebugInfoParseTime() override { in GetDebugInfoParseTime() 297 StatsDuration::Duration GetDebugInfoIndexTime() override;
|
| /freebsd-14.2/contrib/bsnmp/tests/ |
| H A D | catch.hpp | 2115 template<typename Duration> 5370 Duration point; 5371 Duration lower_bound; 5372 Duration upper_bound; 5559 template <class Duration> 6594 Duration mean; 6761 Duration elapsed; 6843 Duration warmup_time; 7198 Duration mean = Duration(0); in analyse() 7209 Estimate<Duration>{Duration(0), Duration(0), Duration(0), 0.0}, in analyse() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | SymbolFileOnDemand.cpp | 545 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoParseTime() { in GetDebugInfoParseTime() 552 StatsDuration::Duration SymbolFileOnDemand::GetDebugInfoIndexTime() { in GetDebugInfoIndexTime()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | actions,atc260x.yaml | 40 Duration in seconds which the key should be kept pressed for device
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | Breakpoint.h | 592 StatsDuration::Duration GetResolveTime() const { return m_resolve_time; } in GetResolveTime()
|