tmpbuf           1584 ext/iconv/iconv.c 					char tmpbuf[80];
tmpbuf           1593 ext/iconv/iconv.c 					if (csname_len > sizeof(tmpbuf) - 1) {
tmpbuf           1612 ext/iconv/iconv.c 					memcpy(tmpbuf, csname, csname_len);
tmpbuf           1613 ext/iconv/iconv.c 					tmpbuf[csname_len] = '\0';
tmpbuf           1619 ext/iconv/iconv.c 					cd = iconv_open(enc, tmpbuf);
tmpbuf            742 ext/opcache/ZendAccelerator.c 		struct stat *tmpbuf = sapi_module.get_stat(TSRMLS_C);
tmpbuf            744 ext/opcache/ZendAccelerator.c 		if (tmpbuf) {
tmpbuf            746 ext/opcache/ZendAccelerator.c 				*size = tmpbuf->st_size;
tmpbuf            748 ext/opcache/ZendAccelerator.c 			return tmpbuf->st_mtime;
tmpbuf           1124 ext/sockets/sockets.c 	char		*tmpbuf;
tmpbuf           1137 ext/sockets/sockets.c 	tmpbuf = emalloc(length + 1);
tmpbuf           1142 ext/sockets/sockets.c 		retval = php_read(php_sock, tmpbuf, length, 0);
tmpbuf           1144 ext/sockets/sockets.c 		retval = recv(php_sock->bsd_socket, tmpbuf, length, 0);
tmpbuf           1161 ext/sockets/sockets.c 		efree(tmpbuf);
tmpbuf           1164 ext/sockets/sockets.c 		efree(tmpbuf);
tmpbuf           1168 ext/sockets/sockets.c 	tmpbuf = erealloc(tmpbuf, retval + 1);
tmpbuf           1169 ext/sockets/sockets.c 	tmpbuf[retval] = '\0' ;
tmpbuf           1171 ext/sockets/sockets.c 	RETURN_STRINGL(tmpbuf, retval, 0);
tmpbuf           1082 ext/standard/math.c 	char *tmpbuf = NULL, *resbuf;
tmpbuf           1098 ext/standard/math.c 	tmplen = spprintf(&tmpbuf, 0, "%.*F", dec, d);
tmpbuf           1100 ext/standard/math.c 	if (tmpbuf == NULL || !isdigit((int)tmpbuf[0])) {
tmpbuf           1105 ext/standard/math.c 		return tmpbuf;
tmpbuf           1110 ext/standard/math.c 		dp = strpbrk(tmpbuf, ".,");
tmpbuf           1117 ext/standard/math.c 		integral = dp - tmpbuf;
tmpbuf           1144 ext/standard/math.c 	s = tmpbuf+tmplen-1;
tmpbuf           1177 ext/standard/math.c 	while(s >= tmpbuf) {
tmpbuf           1179 ext/standard/math.c 		if (thousand_sep && (++count%3)==0 && s>=tmpbuf) {
tmpbuf           1190 ext/standard/math.c 	efree(tmpbuf);
tmpbuf            255 sapi/fpm/fpm/fpm_sockets.c 	char tmpbuf[INET6_ADDRSTRLEN];
tmpbuf            305 sapi/fpm/fpm/fpm_sockets.c 		inet_ntop(p->ai_family, fpm_get_in_addr(p->ai_addr), tmpbuf, INET6_ADDRSTRLEN);
tmpbuf            308 sapi/fpm/fpm/fpm_sockets.c 				zlog(ZLOG_DEBUG, "Found address for %s, socket opened on %s", dup_address, tmpbuf);
tmpbuf            311 sapi/fpm/fpm/fpm_sockets.c 			zlog(ZLOG_WARNING, "Found multiple addresses for %s, %s ignored", dup_address, tmpbuf);