Lines Matching refs:timeptr
1226 dumptime(register const struct tm *timeptr)
1245 ((0 <= timeptr->tm_wday
1246 && timeptr->tm_wday < sizeof wday_name / sizeof wday_name[0])
1247 ? wday_name[timeptr->tm_wday] : "???"),
1248 ((0 <= timeptr->tm_mon
1249 && timeptr->tm_mon < sizeof mon_name / sizeof mon_name[0])
1250 ? mon_name[timeptr->tm_mon] : "???"),
1251 timeptr->tm_mday, timeptr->tm_hour,
1252 timeptr->tm_min, timeptr->tm_sec);
1253 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1254 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +