Lines Matching refs:tmp
112 struct tm *tmp; in php_localtime_r() local
116 tmp = localtime(timep); in php_localtime_r()
117 if (tmp) { in php_localtime_r()
118 memcpy(p_tm, tmp, sizeof(struct tm)); in php_localtime_r()
119 tmp = p_tm; in php_localtime_r()
124 return tmp; in php_localtime_r()
133 char *tmp; in php_ctime_r() local
137 tmp = ctime(clock); in php_ctime_r()
138 if (tmp) { in php_ctime_r()
139 strcpy(buf, tmp); in php_ctime_r()
140 tmp = buf; in php_ctime_r()
145 return tmp; in php_ctime_r()
154 char *tmp; in php_asctime_r() local
158 tmp = asctime(tm); in php_asctime_r()
159 if (tmp) { in php_asctime_r()
160 strcpy(buf, tmp); in php_asctime_r()
161 tmp = buf; in php_asctime_r()
166 return tmp; in php_asctime_r()
175 struct tm *tmp; in php_gmtime_r() local
179 tmp = gmtime(timep); in php_gmtime_r()
180 if (tmp) { in php_gmtime_r()
181 memcpy(p_tm, tmp, sizeof(struct tm)); in php_gmtime_r()
182 tmp = p_tm; in php_gmtime_r()
187 return tmp; in php_gmtime_r()