Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dyear_month_day.h81 const unsigned __yoe = (__doe - __doe / 1460 + __doe / 36524 - __doe / 146096) / 365; // [0, 399] in __from_days() local
82 const int __yr = static_cast<int>(__yoe) + __era * 400; in __from_days()
83 const unsigned __doy = __doe - (365 * __yoe + __yoe / 4 - __yoe / 100); // [0, 365] in __from_days()
100 const unsigned __yoe = static_cast<unsigned>(__yr - __era * 400); // [0, 399] in __to_days() local
102 const unsigned __doe = __yoe * 365 + __yoe / 4 - __yoe / 100 + __doy; // [0, 146096] in __to_days()