Home
last modified time | relevance | path

Searched refs:ymd (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/powerpc/powernv/
H A Dopal_dev.c272 uint32_t ymd; in opal_gettime() local
275 rv = opal_call(OPAL_RTC_READ, vtophys(&ymd), vtophys(&hmsm)); in opal_gettime()
279 rv = opal_call(OPAL_RTC_READ, vtophys(&ymd), vtophys(&hmsm)); in opal_gettime()
286 ymd = be32toh(ymd); in opal_gettime()
293 ct.day = bcd2bin((ymd & 0x000000ff) >> 0); in opal_gettime()
294 ct.mon = bcd2bin((ymd & 0x0000ff00) >> 8); in opal_gettime()
295 ct.year = bcd2bin32((ymd & 0xffff0000) >> 16); in opal_gettime()
305 uint32_t ymd = 0; in opal_settime() local
310 ymd |= (uint32_t)bin2bcd(ct.day); in opal_settime()
311 ymd |= ((uint32_t)bin2bcd(ct.mon) << 8); in opal_settime()
[all …]
/freebsd/contrib/ntp/ntpd/
H A Drefclock_dumbclock.c65 struct tm ymd; /* struct tm for y/m/d only */ member
147 up->ymd = *tm_time_p; in dumbclock_start()
253 asserted_tm.tm_year = up->ymd.tm_year; in dumbclock_receive()
254 asserted_tm.tm_mon = up->ymd.tm_mon; in dumbclock_receive()
255 asserted_tm.tm_mday = up->ymd.tm_mday; in dumbclock_receive()
284 up->ymd = *lt_p; in dumbclock_receive()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dchrono488 constexpr year_month_day operator+(const year_month_day& ymd, const months& dm) noexcept;
489 constexpr year_month_day operator+(const months& dm, const year_month_day& ymd) noexcept;
490 constexpr year_month_day operator+(const year_month_day& ymd, const years& dy) noexcept;
491 constexpr year_month_day operator+(const years& dy, const year_month_day& ymd) noexcept;
492 constexpr year_month_day operator-(const year_month_day& ymd, const months& dm) noexcept;
493 constexpr year_month_day operator-(const year_month_day& ymd, const years& dy) noexcept;
497 operator<<(basic_ostream<charT, traits>& os, const year_month_day& ymd);
H A Dlocale1498 enum dateorder { no_order, dmy, mdy, ymd, ydm };
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dchrono.cppm
H A Dchrono.inc169 // [time.cal.ymd], class year_month_day
/freebsd/contrib/llvm-project/libcxx/src/
H A Dlocale.cpp4884 return time_base::ymd; in __do_date_order()
4966 return time_base::ymd; in __do_date_order()