Lines Matching defs:timeptr
1213 dumptime(const struct tm *timeptr)
1232 ((0 <= timeptr->tm_wday
1233 && timeptr->tm_wday < (int) (sizeof wday_name / sizeof wday_name[0]))
1234 ? wday_name[timeptr->tm_wday] : "???"),
1235 ((0 <= timeptr->tm_mon
1236 && timeptr->tm_mon < (int) (sizeof mon_name / sizeof mon_name[0]))
1237 ? mon_name[timeptr->tm_mon] : "???"),
1238 timeptr->tm_mday, timeptr->tm_hour,
1239 timeptr->tm_min, timeptr->tm_sec);
1240 trail = timeptr->tm_year % DIVISOR + TM_YEAR_BASE % DIVISOR;
1241 lead = timeptr->tm_year / DIVISOR + TM_YEAR_BASE / DIVISOR +