Lines Matching defs:day
51 kmutex_t tod_lock; /* protects time-of-day stuff */
72 * Time of day and interval timer support.
75 * the time-of-day and per-process interval timers. Subroutines
710 * Advances timer value past the current time of day. See the detailed
1356 * into year/month/day/hour/minute/second format, and back again.
1372 long dse, day, month, year;
1401 day = dse - 365 * (year - 70) - ((year - 69) >> 2);
1402 } while (day < 0);
1405 while (day >= days_thru_month[month + 1])
1408 tod.tod_day = day - days_thru_month[month] + 1;
1489 utc = (utc << 3) + (utc << 4) + tod.tod_hour; /* 24 * day + hour */