Lines Matching refs:p_tm
78 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
80 if (localtime_r(timep, p_tm) == 0) in php_localtime_r()
81 return (p_tm); in php_localtime_r()
99 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
101 if (gmtime_r(timep, p_tm) == 0) in php_gmtime_r()
102 return (p_tm); in php_gmtime_r()
110 PHPAPI struct tm *php_localtime_r(const time_t *const timep, struct tm *p_tm) in php_localtime_r() argument
118 memcpy(p_tm, tmp, sizeof(struct tm)); in php_localtime_r()
119 tmp = p_tm; in php_localtime_r()
173 PHPAPI struct tm *php_gmtime_r(const time_t *const timep, struct tm *p_tm) in php_gmtime_r() argument
181 memcpy(p_tm, tmp, sizeof(struct tm)); in php_gmtime_r()
182 tmp = p_tm; in php_gmtime_r()