Lines Matching refs:p_tm
79 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
81 if (localtime_r(timep, p_tm) == 0) in php_localtime_r()
82 return (p_tm); in php_localtime_r()
100 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
102 if (gmtime_r(timep, p_tm) == 0) in php_gmtime_r()
103 return (p_tm); in php_gmtime_r()
111 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
119 memcpy(p_tm, tmp, sizeof(struct tm)); in php_localtime_r()
120 tmp = p_tm; in php_localtime_r()
174 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
182 memcpy(p_tm, tmp, sizeof(struct tm)); in php_gmtime_r()
183 tmp = p_tm; in php_gmtime_r()