Lines Matching defs:localtime
1 /* $OpenBSD: localtime.c,v 1.67 2024/08/18 02:20:29 guenther Exp $ */
209 ** ctime, gmtime, localtime] return values in one of two static
1204 ** The easy way to behave "as if no library function calls" localtime
1303 ** Re-entrant version of localtime.
1318 localtime(const time_t *timep)
1320 _THREAD_PRIVATE_KEY(localtime);
1321 struct tm * p_tm = (struct tm*)_THREAD_PRIVATE(localtime, tm, NULL);
1327 DEF_STRONG(localtime);
1330 ** gmtsub is to gmtime as localsub is to localtime.
1539 ** asctime(localtime(timer))
1541 return asctime(localtime(timep));