Lines Matching refs:system_clock
66 static system_clock::time_point __libcpp_system_clock_now() { in __libcpp_system_clock_now()
85 return system_clock::time_point(duration_cast<system_clock::duration>(d - nt_to_unix_epoch)); in __libcpp_system_clock_now()
90 static system_clock::time_point __libcpp_system_clock_now() {
94 return system_clock::time_point(seconds(tp.tv_sec) + microseconds(tp.tv_nsec / 1000));
99 static system_clock::time_point __libcpp_system_clock_now() {
102 return system_clock::time_point(seconds(tv.tv_sec) + microseconds(tv.tv_usec));
107 const bool system_clock::is_steady;
109 system_clock::time_point
110 system_clock::now() noexcept in now()
116 system_clock::to_time_t(const time_point& t) noexcept in to_time_t()
121 system_clock::time_point
122 system_clock::from_time_t(time_t t) noexcept in from_time_t()
124 return system_clock::time_point(seconds(t)); in from_time_t()