Lines Matching defs:p_tm
1307 localtime_r(const time_t *timep, struct tm *p_tm)
1311 p_tm = localsub(timep, 0L, p_tm);
1313 return p_tm;
1321 struct tm * p_tm = (struct tm*)_THREAD_PRIVATE(localtime, tm, NULL);
1323 if (p_tm == NULL)
1325 return localtime_r(timep, p_tm);
1368 gmtime_r(const time_t *timep, struct tm *p_tm)
1370 return gmtsub(timep, 0L, p_tm);
1378 struct tm * p_tm = (struct tm*) _THREAD_PRIVATE(gmtime, tm, NULL);
1380 if (p_tm == NULL)
1382 return gmtime_r(timep, p_tm);