Searched refs:timer (Results 1 – 4 of 4) sorted by relevance
/time/ |
A D | time.c | 23 time (time_t *timer) in time() argument 28 if (timer) in time() 29 *timer = ts.tv_sec; in time()
|
A D | tzset.c | 518 __tz_compute (__time64_t timer, struct tm *tm, int use_localtime) in __tz_compute() argument 532 isdst = (timer < tz_rules[1].change in __tz_compute() 533 || timer >= tz_rules[0].change); in __tz_compute() 535 isdst = (timer >= tz_rules[0].change in __tz_compute() 536 && timer < tz_rules[1].change); in __tz_compute() 567 __tz_convert (__time64_t timer, int use_localtime, struct tm *tp) in weak_alias() 580 __tzfile_compute (timer, use_localtime, &leap_correction, in weak_alias() 584 if (! __offtime (timer, 0, tp)) in weak_alias() 587 __tz_compute (timer, tp, use_localtime); in weak_alias() 603 if (__offtime (timer, tp->tm_gmtoff - leap_correction, tp)) in weak_alias()
|
A D | tzfile.c | 579 __tzfile_compute (__time64_t timer, int use_localtime, in __tzfile_compute() argument 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() [all …]
|
A D | getdate.c | 114 __time64_t timer; in __getdate_r() local 221 timer = time64_now (); in __getdate_r() 222 __localtime64_r (&timer, &tm); in __getdate_r()
|
Completed in 6 milliseconds