Home
last modified time | relevance | path

Searched refs:__tp (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__chrono/
H A Dostream.h47 operator<<(basic_ostream<_CharT, _Traits>& __os, const sys_time<_Duration>& __tp) {
48 return __os << std::format(__os.getloc(), _LIBCPP_STATICALLY_WIDEN(_CharT, "{:L%F %T}"), __tp);
59 operator<<(basic_ostream<_CharT, _Traits>& __os, const file_time<_Duration> __tp) {
60 return __os << std::format(__os.getloc(), _LIBCPP_STATICALLY_WIDEN(_CharT, "{:L%F %T}"), __tp);
65 operator<<(basic_ostream<_CharT, _Traits>& __os, const local_time<_Duration> __tp) {
66 return __os << sys_time<_Duration>{__tp.time_since_epoch()};
H A Dconvert_to_tm.h80 _LIBCPP_HIDE_FROM_ABI _Tm __convert_to_tm(const chrono::sys_time<_Duration> __tp) { in __convert_to_tm() argument
81 chrono::sys_days __days = chrono::floor<chrono::days>(__tp); in __convert_to_tm()
87 …chrono::duration_cast<chrono::seconds>(__tp - chrono::time_point_cast<chrono::seconds>(__days)).co… in __convert_to_tm()
/freebsd-14.2/contrib/llvm-project/libcxx/include/__condition_variable/
H A Dcondition_variable.h209 …unique_lock<mutex>& __lk, chrono::time_point<chrono::steady_clock, chrono::nanoseconds> __tp) _NOE… in __do_timed_wait() argument
213 nanoseconds __d = __tp.time_since_epoch(); in __do_timed_wait()
233 … chrono::time_point<_Clock, chrono::nanoseconds> __tp) _NOEXCEPT { in __do_timed_wait() argument
234 wait_for(__lk, __tp - _Clock::now()); in __do_timed_wait()