Home
last modified time | relevance | path

Searched refs:__ymd (Results 1 – 4 of 4) sorted by relevance

/freebsd-head/contrib/llvm-project/libcxx/src/experimental/
HDtime_zone.cpp181 [[nodiscard]] static sys_seconds __to_sys_seconds(year_month_day __ymd, seconds __seconds) { in __to_sys_seconds() argument
182 seconds __result = static_cast<sys_days>(__ymd).time_since_epoch() + __seconds; in __to_sys_seconds()
240 …year_month_day __ymd = chrono::__to_year_month_day(__continuation.__year, __continuation.__in, __c… in __until_to_sys_seconds() local
241 return chrono::__to_sys_seconds(__ymd, chrono::__at_to_sys_seconds(__continuation)); in __until_to_sys_seconds()
296 year_month_day __ymd = chrono::__to_year_month_day(__year, __rule.__in, __rule.__on); in __from_to_sys_seconds() local
299 return chrono::__to_sys_seconds(__ymd, __at); in __from_to_sys_seconds()
404 year_month_day __ymd = chrono::__to_year_month_day(__year, __rule.__in, __rule.__on); in __rule_to_sys_seconds() local
407 return chrono::__to_sys_seconds(__ymd, __at); in __rule_to_sys_seconds()
/freebsd-head/contrib/llvm-project/libcxx/include/__chrono/
HDyear_month_weekday.h82 const year_month_day __ymd = year_month_day(__sysd); in __from_days() local
83 …return year_month_weekday{__ymd.year(), __ymd.month(), __wd[(static_cast<unsigned>(__ymd.day()) - … in __from_days()
HDostream.h228 operator<<(basic_ostream<_CharT, _Traits>& __os, const year_month_day& __ymd) {
229 return __os << (__ymd.ok() ? std::format(_LIBCPP_STATICALLY_WIDEN(_CharT, "{:%F}"), __ymd)
230 … : std::format(_LIBCPP_STATICALLY_WIDEN(_CharT, "{:%F} is not a valid date"), __ymd));
HDconvert_to_tm.h86 chrono::year_month_day __ymd{__days}; in __convert_to_tm()
88 _Tm __result = std::__convert_to_tm<_Tm>(chrono::year_month_day{__ymd}, chrono::weekday{__days}); in __convert_to_tm()