Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dyear_month_day.h83 const unsigned __doy = __doe - (365 * __yoe + __yoe / 4 - __yoe / 100); // [0, 365] in __from_days() local
84 const unsigned __mp = (5 * __doy + 2) / 153; // [0, 11] in __from_days()
85 const unsigned __dy = __doy - (153 * __mp + 2) / 5 + 1; // [1, 31] in __from_days()
101 const unsigned __doy = (153 * (__mth + (__mth > 2 ? -3 : 9)) + 2) / 5 + __dy - 1; // [0, 365] in __to_days() local
102 const unsigned __doe = __yoe * 365 + __yoe / 4 - __yoe / 100 + __doy; // [0, 146096] in __to_days()