Lines Matching defs:seconds
223 int_least32_t tt_utoff; /* UT offset in seconds */
786 /* Read leap seconds, discarding those out of time_t range. */
793 /* Leap seconds cannot occur before the Epoch,
1036 ** Given a pointer into a timezone string, extract a number of seconds,
1040 ** of seconds.
1067 /* 'SECSPERMIN' allows for leap seconds. */
1708 register __time_t seconds;
1712 seconds = sp->ats[0] - t;
1713 else seconds = t - sp->ats[sp->timecnt - 1];
1714 --seconds;
1716 /* Beware integer overflow, as SECONDS might
1718 years = (time_t)(seconds / SECSPERREPEAT
1720 seconds = (time_t)(years * AVGSECSPERYEAR);
1723 newt = (time_t)(t + seconds + SECSPERREPEAT);
1725 newt = (time_t)(t - seconds - SECSPERREPEAT);
1937 /* If less than SECSPERMIN, the number of seconds since the
1939 to localtime tm_sec because of leap seconds. */
2415 ** First try without normalization of seconds
2417 ** If that fails, try with normalization of seconds.
2634 ** is not the case if we are accounting for leap seconds.