Home
last modified time | relevance | path

Searched refs:time_point (Results 1 – 25 of 51) sorted by relevance

123

/freebsd-14.2/contrib/llvm-project/libcxx/include/__chrono/
H A Dtime_point.h34 class _LIBCPP_TEMPLATE_VIS time_point {
53 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 time_point(const time_point<clock, _Duration2>… in time_point() function
81 common_type<chrono::time_point<_Clock, _Duration1>, chrono::time_point<_Clock, _Duration2> > {
122 operator==(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs…
132 operator!=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs…
142 operator<(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs)…
150 operator>(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs)…
158 operator<=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs…
166 operator>=(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rhs…
174 operator<=>(const time_point<_Clock, _Duration1>& __lhs, const time_point<_Clock, _Duration2>& __rh…
[all …]
H A Dsystem_clock.h31 typedef chrono::time_point<system_clock> time_point; typedef
34 static time_point now() _NOEXCEPT;
35 static time_t to_time_t(const time_point& __t) _NOEXCEPT;
36 static time_point from_time_t(time_t __t) _NOEXCEPT;
42 using sys_time = time_point<system_clock, _Duration>;
H A Dfile_clock.h40 using file_time = time_point<file_clock, _Duration>;
60 typedef chrono::time_point<_FilesystemClock> time_point; typedef
64 …_LIBCPP_AVAILABILITY_FILESYSTEM_LIBRARY _LIBCPP_EXPORTED_FROM_ABI static time_point now() noexcept;
H A Dsteady_clock.h31 typedef chrono::time_point<steady_clock, duration> time_point; typedef
34 static time_point now() _NOEXCEPT;
H A Dconcepts.h30 concept __is_time_point = __is_specialization_v<_Tp, chrono::time_point>;
H A Dcalendar.h29 using local_time = time_point<local_t, _Duration>;
/freebsd-14.2/contrib/llvm-project/libcxx/src/
H A Dchrono.cpp95 static system_clock::time_point __libcpp_system_clock_now() { in __libcpp_system_clock_now()
119 static system_clock::time_point __libcpp_system_clock_now() {
128 static system_clock::time_point __libcpp_system_clock_now() {
140 time_t system_clock::to_time_t(const time_point& t) noexcept { in to_time_t()
144 system_clock::time_point system_clock::from_time_t(time_t t) noexcept { return system_clock::time_p… in from_time_t()
163 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now()
183 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now()
191 return steady_clock::time_point(steady_clock::duration(dur)); in __libcpp_steady_clock_now()
196 static steady_clock::time_point __libcpp_steady_clock_now() { in __libcpp_steady_clock_now()
206 static steady_clock::time_point __libcpp_steady_clock_now() noexcept { in __libcpp_steady_clock_now()
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__condition_variable/
H A Dcondition_variable.h65 wait_until(unique_lock<mutex>& __lk, const chrono::time_point<_Clock, _Duration>& __t); in _LIBCPP_DECLARE_STRONG_ENUM_EPILOG()
69 …wait_until(unique_lock<mutex>& __lk, const chrono::time_point<_Clock, _Duration>& __t, _Predicate … in _LIBCPP_DECLARE_STRONG_ENUM_EPILOG()
91 …__do_timed_wait(unique_lock<mutex>& __lk, chrono::time_point<_Clock, chrono::nanoseconds>) _NOEXCE… in _LIBCPP_DECLARE_STRONG_ENUM_EPILOG()
152 using __clock_tp_ns = time_point<_Clock, nanoseconds>; in wait_until()
154 typename _Clock::time_point __now = _Clock::now(); in wait_until()
166 unique_lock<mutex>& __lk, const chrono::time_point<_Clock, _Duration>& __t, _Predicate __pred) { in wait_until()
180 steady_clock::time_point __c_now = steady_clock::now(); in wait_for()
183 using __clock_tp_ns = time_point<steady_clock, nanoseconds>; in wait_for()
186 using __clock_tp_ns = time_point<system_clock, nanoseconds>; in wait_for()
209 …unique_lock<mutex>& __lk, chrono::time_point<chrono::steady_clock, chrono::nanoseconds> __tp) _NOE… in __do_timed_wait()
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dchrono111 class time_point
123 explicit time_point(const duration& d); // same as time_point() + d // constexpr in C++14
127 time_point(const time_point<clock, Duration2>& t); // constexpr in C++14
151 struct common_type<chrono::time_point<Clock, Duration1>, chrono::time_point<Clock, Duration2>>;
234 operator-(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
238 … bool operator==(const time_point<Clock, Duration1>& lhs, const time_point<Clock, Duration2>& rhs);
257 time_point<Clock, ToDuration> time_point_cast(const time_point<Clock, Duration>& t);
282 typedef chrono::time_point<system_clock> time_point;
309 typedef chrono::time_point<file_clock> time_point;
334 typedef chrono::time_point<steady_clock, duration> time_point;
[all …]
H A Dshared_mutex59 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
70 try_lock_shared_until(const chrono::time_point<Clock, Duration>& abs_time);
88 const chrono::time_point<Clock, Duration>& abs_time);
105 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
135 #include <__chrono/time_point.h>
246 try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time)
260 try_lock_shared_until(const chrono::time_point<_Clock, _Duration>& __abs_time)
266 bool shared_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time) {
294 bool shared_timed_mutex::try_lock_shared_until(const chrono::time_point<_Clock, _Duration>& __abs_t…
376 …_LIBCPP_HIDE_FROM_ABI bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __abs_time);
[all …]
H A Dcondition_variable40 const chrono::time_point<Clock, Duration>& abs_time);
45 const chrono::time_point<Clock, Duration>& abs_time,
85 const chrono::time_point<Clock, Duration>& abs_time);
90 const chrono::time_point<Clock, Duration>& abs_time,
110 … const chrono::time_point<Clock, Duration>& abs_time, Predicate pred); // since C++20
125 #include <__chrono/time_point.h>
166 wait_until(_Lock& __lock, const chrono::time_point<_Clock, _Duration>& __t);
170 wait_until(_Lock& __lock, const chrono::time_point<_Clock, _Duration>& __t, _Predicate __pred);
185 …_Lock& __lock, stop_token __stoken, const chrono::time_point<_Clock, _Duration>& __abs_time, _Pred…
237 cv_status condition_variable_any::wait_until(_Lock& __lock, const chrono::time_point<_Clock, _Durat…
[all …]
H A Dmutex67 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
85 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
137 unique_lock(mutex_type& m, const chrono::time_point<Clock, Duration>& abs_time);
154 bool try_lock_until(const chrono::time_point<Clock, Duration>& abs_time);
191 #include <__chrono/time_point.h>
261 try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
266 bool timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {
300 try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
305 bool recursive_timed_mutex::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) {
H A Dsemaphore36 bool try_acquire_until(const chrono::time_point<Clock, Duration>& abs_time);
59 #include <__chrono/time_point.h>
168 try_acquire_until(chrono::time_point<_Clock, _Duration> const& __abs_time) {
/freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/
H A Dfilesystem_clock.cpp40 _FilesystemClock::time_point _FilesystemClock::now() noexcept { in now()
47 return time_point(__secs(tp.tv_sec) + chrono::duration_cast<duration>(__nsecs(tp.tv_nsec))); in now()
53 return time_point(__secs(tp.tv_sec) + chrono::duration_cast<duration>(__nsecs(tp.tv_nsec))); in now()
58 return time_point(__secs(tv.tv_sec) + __microsecs(tv.tv_usec)); in now()
/freebsd-14.2/sys/contrib/dev/iwlwifi/
H A Diwl-dbg-tlv.c161 u32 tp = le32_to_cpu(hcmd->time_point); in iwl_dbg_tlv_alloc_hcmd()
250 u32 tp = le32_to_cpu(trig->time_point); in iwl_dbg_tlv_alloc_trigger()
438 &trans->dbg.time_point[i]; in iwl_dbg_tlv_free()
526 &trans->dbg.time_point[i]; in iwl_dbg_tlv_init()
1065 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
1072 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
1085 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
1103 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
1112 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
1118 le32_to_cpu(trig->time_point)); in iwl_dbg_tlv_override_trig_node()
[all …]
H A Diwl-op-mode.h109 void (*time_point)(struct iwl_op_mode *op_mode, member
210 if (!op_mode || !op_mode->ops || !op_mode->ops->time_point) in iwl_op_mode_time_point()
212 op_mode->ops->time_point(op_mode, tp_id, tp_data); in iwl_op_mode_time_point()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DChrono.h34 using TimePoint = std::chrono::time_point<std::chrono::system_clock, D>;
41 using UtcTime = std::chrono::time_point<UtcClock, D>;
53 time_point_cast<system_clock::time_point::duration>(TP)); in toTimeT()
59 return system_clock::to_time_t(time_point<system_clock, seconds>( in toTimeT()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInternal.h131 system_clock::time_point LastAllocatorPurgeAttemptTime = system_clock::now();
139 system_clock::time_point ProcessStartTime = system_clock::now();
140 system_clock::time_point UnitStartTime, UnitStopTime;
/freebsd-14.2/contrib/llvm-project/libcxx/include/__thread/
H A Dthis_thread.h53 _LIBCPP_HIDE_FROM_ABI void sleep_until(const chrono::time_point<_Clock, _Duration>& __t) { in sleep_until()
62 inline _LIBCPP_HIDE_FROM_ABI void sleep_until(const chrono::time_point<chrono::steady_clock, _Durat… in sleep_until()
/freebsd-14.2/sys/contrib/dev/iwlwifi/fw/api/
H A Ddbg-tlv.h223 __le32 time_point; member
247 __le32 time_point; member
275 __le32 time_point; member
/freebsd-14.2/contrib/llvm-project/libcxx/include/__mutex/
H A Dunique_lock.h54 …_LIBCPP_HIDE_FROM_ABI unique_lock(mutex_type& __m, const chrono::time_point<_Clock, _Duration>& __… in unique_lock()
92 bool try_lock_until(const chrono::time_point<_Clock, _Duration>& __t);
147 bool unique_lock<_Mutex>::try_lock_until(const chrono::time_point<_Clock, _Duration>& __t) { in try_lock_until()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__filesystem/
H A Dfile_time_type.h26 typedef chrono::time_point<_FilesystemClock> file_time_type;
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dchrono.inc14 using std::chrono::time_point;
71 // [time.point.nonmember], time_point arithmetic
73 // [time.point.comparisons], time_point comparisons
129 // [time.clock.cast], time_point conversions
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DTimeProfiler.cpp36 using std::chrono::time_point;
61 using TimePointType = time_point<ClockType>;
276 const time_point<system_clock> BeginningOfTime;
/freebsd-14.2/contrib/llvm-project/lld/include/lld/Common/
H A DTimer.h32 std::chrono::time_point<std::chrono::high_resolution_clock> startTime;

123