Home | History | Annotate | Download | only in time

Lines Matching defs:seconds

311        platforms where time_t counts leap seconds; this works due to
443 " -t [L,]U Start at time L, end before time U (in seconds since 1970)\n"
675 intmax_t myy, seconds, years;
685 seconds = diff400 * SECSPER400YEARS;
688 seconds = isleap(myy) ? SECSPERLYEAR : SECSPERNYEAR;
692 if (t > absolute_max_time - seconds)
694 t += seconds;
701 seconds = diff400 * SECSPER400YEARS;
704 seconds = isleap(myy - 1) ? SECSPERLYEAR : SECSPERNYEAR;
708 if (t < absolute_min_time + seconds)
710 t -= seconds;
804 the same instant, return A's UT offset in seconds, where positive
828 long seconds = a->tm_sec - b->tm_sec + 60 * minutes;
829 return seconds;
1040 TM is the broken-down time, T the seconds count, AB the time zone