Home | History | Annotate | Download | only in i18n

Lines Matching refs:ClockMath

25 int32_t ClockMath::floorDivide(int32_t numerator, int32_t denominator) {
30 int64_t ClockMath::floorDivide(int64_t numerator, int64_t denominator) {
35 int32_t ClockMath::floorDivide(double numerator, int32_t denominator,
43 double ClockMath::floorDivide(double dividend, double divisor,
92 double julian = 365 * y + ClockMath::floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal
93 ClockMath::floorDivide(y, 400) - ClockMath::floorDivide(y, 100) + 2 + // => Gregorian cal
109 int32_t n400 = ClockMath::floorDivide(day, 146097, doy); // 400-year cycle length
110 int32_t n100 = ClockMath::floorDivide(doy, 36524, doy); // 100-year cycle length
111 int32_t n4 = ClockMath::floorDivide(doy, 1461, doy); // 4-year cycle length
112 int32_t n1 = ClockMath::floorDivide(doy, 365, doy);
140 double day = ClockMath::floorDivide((double)time, (double)U_MILLIS_PER_DAY, millisInDay);
147 ClockMath::floorDivide(day + UCAL_THURSDAY, 7, dow);