Lines Matching defs:month
1356 * into year/month/day/hour/minute/second format, and back again.
1372 long dse, day, month, year;
1404 month = ((year & 3) << 4) + 1;
1405 while (day >= days_thru_month[month + 1])
1406 month++;
1408 tod.tod_day = day - days_thru_month[month] + 1;
1409 tod.tod_month = month & 15;
1421 int month = tod.tod_month + ((year & 3) << 4);
1430 int days_diff = days_thru_month[month + 1] - days_thru_month[month];
1488 utc += days_thru_month[month] + tod.tod_day - 1;