Lines Matching refs:months
56 // cache of months
392 // This does not handle months out of the range 0..11
560 // This may be called by Calendar::handleComputeJulianDay with months out of the range
561 // 0..11. Need to handle that here since monthStart requires months in the range 0.11.
621 // Guess at the number of elapsed full months since the epoch
622 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
624 startDate = (int32_t)uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
633 months++;
638 while ((startDate = trueMonthStart(months)) > days) {
640 months--;
643 year = months >= 0 ? ((months / 12) + 1) : ((months + 1 ) / 12);
644 month = ((months % 12) + 12 ) % 12;