/freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
H A D | zoned_time.h | 80 _LIBCPP_HIDE_FROM_ABI zoned_time(const sys_time<_Duration>& __tp) 93 requires is_convertible_v<sys_time<_Duration2>, sys_time<_Duration>> 96 _LIBCPP_HIDE_FROM_ABI zoned_time(_TimeZonePtr __zone, const sys_time<_Duration>& __tp) 99 _LIBCPP_HIDE_FROM_ABI zoned_time(string_view __name, const sys_time<_Duration>& __tp) 105 sys_time<duration>>) 112 sys_time<duration>>) 118 sys_time<duration>>) 125 sys_time<duration>>) 130 requires is_convertible_v<sys_time<_Duration2>, sys_time<_Duration>> 136 requires is_convertible_v<sys_time<_Duration2>, sys_time<_Duration>> [all …]
|
H A D | leap_second.h | 64 _LIBCPP_HIDE_FROM_ABI constexpr bool operator==(const leap_second& __x, const sys_time<_Duration>& … 69 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<(const leap_second& __x, const sys_time<_Duration>& _… 74 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<(const sys_time<_Duration>& __x, const leap_second& _… 79 _LIBCPP_HIDE_FROM_ABI constexpr bool operator>(const leap_second& __x, const sys_time<_Duration>& _… 84 _LIBCPP_HIDE_FROM_ABI constexpr bool operator>(const sys_time<_Duration>& __x, const leap_second& _… 89 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<=(const leap_second& __x, const sys_time<_Duration>& … 94 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<=(const sys_time<_Duration>& __x, const leap_second& … 99 _LIBCPP_HIDE_FROM_ABI constexpr bool operator>=(const leap_second& __x, const sys_time<_Duration>& … 104 _LIBCPP_HIDE_FROM_ABI constexpr bool operator>=(const sys_time<_Duration>& __x, const leap_second& … 112 requires three_way_comparable_with<sys_seconds, sys_time<_Duration>> [all …]
|
H A D | time_zone.h | 68 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI sys_info get_info(const sys_time<_Duration>& __time) const { in get_info() 80 …_LIBCPP_HIDE_FROM_ABI sys_time<common_type_t<_Duration, seconds>> to_sys(const local_time<_Duratio… in to_sys() 84 …return sys_time<common_type_t<_Duration, seconds>>{__time.time_since_epoch() - __info.first.offset… in to_sys() 103 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI sys_time<common_type_t<_Duration, seconds>> 109 …return sys_time<common_type_t<_Duration, seconds>>{__time.time_since_epoch() - __info.first.offset… in to_sys() 114 …return sys_time<common_type_t<_Duration, seconds>>{__time.time_since_epoch() - __info.first.offset… in to_sys() 117 …return sys_time<common_type_t<_Duration, seconds>>{__time.time_since_epoch() - __info.second.offse… in to_sys() 134 to_local(const sys_time<_Duration>& __time) const { in to_local()
|
H A D | system_clock.h | 42 using sys_time = time_point<system_clock, _Duration>; 43 using sys_seconds = sys_time<seconds>; 44 using sys_days = sys_time<days>; variable
|
H A D | file_clock.h | 67 …_LIBCPP_HIDE_FROM_ABI static chrono::sys_time<_Duration> to_sys(const chrono::file_time<_Duration>… in to_sys() 68 return chrono::sys_time<_Duration>(__t.time_since_epoch()); in to_sys() 72 …_LIBCPP_HIDE_FROM_ABI static chrono::file_time<_Duration> from_sys(const chrono::sys_time<_Duratio… in from_sys()
|
H A D | convert_to_tm.h | 84 _LIBCPP_HIDE_FROM_ABI _Tm __convert_to_tm(const chrono::sys_time<_Duration> __tp) { in __convert_to_tm() 116 …return std::__convert_to_tm<_Tm>(chrono::sys_time<typename _ChronoT::duration>{__value.time_since_… in __convert_to_tm() 187 chrono::sys_time<typename _ChronoT::duration>{__value.get_local_time().time_since_epoch()}); in __convert_to_tm()
|
H A D | ostream.h | 50 operator<<(basic_ostream<_CharT, _Traits>& __os, const sys_time<_Duration>& __tp) { 69 return __os << sys_time<_Duration>{__tp.time_since_epoch()};
|
H A D | formatter.h | 715 struct _LIBCPP_TEMPLATE_VIS formatter<chrono::sys_time<_Duration>, _CharT> : public __formatter_chr…
|
/freebsd/sys/contrib/dev/iwlwifi/mvm/ |
H A D | ptp.c | 87 iwl_mvm_get_crosstimestamp_fw(struct iwl_mvm *mvm, u32 *gp2, u64 *sys_time) in iwl_mvm_get_crosstimestamp_fw() argument 121 *sys_time = (u64)le32_to_cpu(resp->platform_timestamp_hi) << 32 | in iwl_mvm_get_crosstimestamp_fw() 128 ktime_t *sys_time, u32 *gp2) in iwl_mvm_phc_get_crosstimestamp_loop() argument 140 *sys_time = tmp_sys_time; in iwl_mvm_phc_get_crosstimestamp_loop() 144 *gp2, *sys_time); in iwl_mvm_phc_get_crosstimestamp_loop() 161 ktime_t sys_time; in iwl_mvm_phc_get_crosstimestamp() local 172 ret = iwl_mvm_get_crosstimestamp_fw(mvm, &gp2, &sys_time); in iwl_mvm_phc_get_crosstimestamp() 177 iwl_mvm_phc_get_crosstimestamp_loop(mvm, &sys_time, &gp2); in iwl_mvm_phc_get_crosstimestamp() 183 gp2, mvm->ptp_data.last_gp2, gp2_ns, (s64)sys_time); in iwl_mvm_phc_get_crosstimestamp() 187 xtstamp->sys_realtime = sys_time; in iwl_mvm_phc_get_crosstimestamp()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | chrono | 291 using sys_time = time_point<system_clock, Duration>; // C++20 292 using sys_seconds = sys_time<seconds>; // C++20 293 using sys_days = sys_time<days>; // C++20 297 operator<<(basic_ostream<charT, traits>& os, const sys_time<Duration>& tp); 315 static sys_time<see-below> to_sys(const file_time<Duration>&); 318 static file_time<see-below> from_sys(const sys_time<Duration>&); 769 sys_info get_info(const sys_time<Duration>& st) const; 775 sys_time<common_type_t<Duration, seconds>> 779 sys_time<common_type_t<Duration, seconds>> 784 to_local(const sys_time<Duration>& tp) const; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | Process.h | 87 std::chrono::nanoseconds &sys_time);
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Process.inc | 131 std::chrono::nanoseconds &sys_time) { 133 std::tie(user_time, sys_time) = getRUsageTimes();
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/ |
H A D | Process.inc | 85 std::chrono::nanoseconds &sys_time) { 95 sys_time = toDuration(KernelTime);
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | chrono.cppm |
|
H A D | chrono.inc | 85 using std::chrono::sys_time;
|
/freebsd/contrib/tzcode/ |
H A D | private.h | 658 static time_t sys_time(time_t *x) { return time(x); } in sys_time() function
|
H A D | localtime.c | 2816 to sys_time invokes the underlying system's 'time' function. */ 2821 time_t r = sys_time(0); in time()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 3391 SYMBOL(sys_time, std::chrono::, <chrono>)
|
/freebsd/contrib/ntp/ |
H A D | CommitLog | [all...] |