Lines Matching defs:tm
5 struct tm *__localtime_r(const time_t *restrict t, struct tm *restrict tm)
13 __secs_to_zone(*t, 0, &tm->tm_isdst, &tm->__tm_gmtoff, 0, &tm->__tm_zone, TZ_USE_ENV);
14 if (__secs_to_tm((long long)*t + tm->__tm_gmtoff, tm) < 0) {
18 return tm;
24 struct tm *localtime_noenv_r(const time_t *restrict t, struct tm *restrict tm)
32 __secs_to_zone(*t, 0, &tm->tm_isdst, &tm->__tm_gmtoff, 0, &tm->__tm_zone, TZ_NO_USE_ENV);
33 if (__secs_to_tm((long long)*t + tm->__tm_gmtoff, tm) < 0) {
37 return tm;