Lines Matching refs:month
540 time_t month;
582 /* valid month value is 0-11 */
583 for (month = 11; days < (long int) daysInMonth[month]; --month) {
586 days -= daysInMonth[month];
587 tp->tm_mon = month;
647 INT32 month = 0;
662 while (month < tm->tm_mon) {
663 if ((month == 1) && leap) {
664 seconds += (g_montbl[month] + 1) * SECS_PER_DAY;
666 seconds += g_montbl[month] * SECS_PER_DAY;
668 month++;
700 tmptr->tm_mday > 31 || tmptr->tm_mday < 1 || /* Day of the month [1-31] */