Home | History | Annotate | Download | only in tzcode

Lines Matching refs:SECSPERMIN

747         *secsp += num * SECSPERMIN;
750 /* 'SECSPERMIN' allows for leap seconds. */
751 strp = getnum(strp, &num, 0, SECSPERMIN);
1573 tmp->tm_min = (int) (rem / SECSPERMIN);
1578 tmp->tm_sec = (int) (rem % SECSPERMIN) + hit;
1734 SECSPERMIN))
1778 if (yourtm.tm_sec >= 0 && yourtm.tm_sec < SECSPERMIN)
1789 if (increment_overflow(&yourtm.tm_sec, 1 - SECSPERMIN))
1792 yourtm.tm_sec = SECSPERMIN - 1;