Lines Matching refs:tmp
113 struct tm *tmp; in php_localtime_r() local
117 tmp = localtime(timep); in php_localtime_r()
118 if (tmp) { in php_localtime_r()
119 memcpy(p_tm, tmp, sizeof(struct tm)); in php_localtime_r()
120 tmp = p_tm; in php_localtime_r()
125 return tmp; in php_localtime_r()
134 char *tmp; in php_ctime_r() local
138 tmp = ctime(clock); in php_ctime_r()
139 if (tmp) { in php_ctime_r()
140 strcpy(buf, tmp); in php_ctime_r()
141 tmp = buf; in php_ctime_r()
146 return tmp; in php_ctime_r()
155 char *tmp; in php_asctime_r() local
159 tmp = asctime(tm); in php_asctime_r()
160 if (tmp) { in php_asctime_r()
161 strcpy(buf, tmp); in php_asctime_r()
162 tmp = buf; in php_asctime_r()
167 return tmp; in php_asctime_r()
176 struct tm *tmp; in php_gmtime_r() local
180 tmp = gmtime(timep); in php_gmtime_r()
181 if (tmp) { in php_gmtime_r()
182 memcpy(p_tm, tmp, sizeof(struct tm)); in php_gmtime_r()
183 tmp = p_tm; in php_gmtime_r()
188 return tmp; in php_gmtime_r()