Lines Matching refs:timer
579 __tzfile_compute (__time64_t timer, int use_localtime, in __tzfile_compute() argument
590 if (__glibc_unlikely (num_transitions == 0 || timer < transitions[0])) in __tzfile_compute()
620 else if (__glibc_unlikely (timer >= transitions[num_transitions - 1])) in __tzfile_compute()
634 if (__glibc_unlikely (! __offtime (timer, 0, tp))) in __tzfile_compute()
638 __tz_compute (timer, tp, 1); in __tzfile_compute()
664 i = (transitions[num_transitions - 1] - timer) / 15778476; in __tzfile_compute()
668 if (timer < transitions[i]) in __tzfile_compute()
670 if (i < 10 || timer >= transitions[i - 10]) in __tzfile_compute()
673 while (timer < transitions[i - 1]) in __tzfile_compute()
681 if (i + 10 >= num_transitions || timer < transitions[i + 10]) in __tzfile_compute()
684 while (timer >= transitions[i]) in __tzfile_compute()
697 if (timer < transitions[i]) in __tzfile_compute()
762 while (timer < leaps[i].transition); in __tzfile_compute()
767 if (timer == leaps[i].transition /* Exactly at the transition time. */ in __tzfile_compute()