Lines Matching refs:timep
71 ctime_r(const time_t *timep, char *buf)
74 return asctime_r(localtime_r(timep, &tm), buf);
78 ctime(const time_t *timep)
80 return asctime(localtime(timep));
108 gmtime_r(const time_t *timep, struct tm *tm)
115 secs = *timep % (60 * 60 * 24);
116 days = *timep / (60 * 60 * 24);
164 gmtime(const time_t *timep)
167 return gmtime_r(timep, &tm);
171 localtime_r(const time_t *timep, struct tm *result)
173 time_t t = *timep - TZ_OFFSET_SECS;
178 localtime(const time_t *timep)
181 return localtime_r(timep, &tm);