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