Home | History | Annotate | Download | only in i18n

Lines Matching full:double

32 int32_t ClockMath::floorDivide(double numerator, int32_t denominator,
34 double quotient;
40 double ClockMath::floorDivide(double dividend, double divisor,
41 double& remainder) {
44 double quotient = floorDivide(dividend, divisor);
53 double q = quotient;
85 double Grego::fieldsToDay(int32_t year, int32_t month, int32_t dom) {
89 double julian = 365 * y + ClockMath::floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal
96 void Grego::dayToFields(double day, int32_t& year, int32_t& month,
136 double millisInDay;
137 double day = ClockMath::floorDivide((double)time, (double)U_MILLIS_PER_DAY, millisInDay);
142 int32_t Grego::dayOfWeek(double day) {