Lines Matching refs:days
278 // a month as having 31 days. Since date parsing now uses range checks based
502 * Return the length (in days) of the given month.
528 * Return the number of days in the given Islamic year
609 int32_t days = julianDay - CIVIL_EPOC;
613 days = julianDay - ASTRONOMICAL_EPOC;
616 year = (int32_t)ClockMath::floorDivide(30 * (int64_t)days + 10646, (int64_t)10631);
617 month = (int32_t)uprv_ceil((days - 29 - yearStart(year)) / 29.5 );
622 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH);
631 if ( days - startDate >= 25 && age > 0) {
638 while ((startDate = trueMonthStart(months)) > days) {
647 if( days < umalquraStartdays){
650 (30 * (int64_t)days + 10646) , (int64_t)10631.0 );
651 month = (int32_t)uprv_ceil((days - 29 - yearStart(year)) / 29.5 );
659 d = days - yearStart(y) +1;
681 dayOfMonth = (days - monthStart(year, month)) + 1;
684 dayOfYear = (days - monthStart(year, 0)) + 1;