perealloc        3634 Zend/zend_API.c 			ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval) * ce->default_static_members_count, ce->type == ZEND_INTERNAL_CLASS);
perealloc        3649 Zend/zend_API.c 			ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS);
perealloc        2533 Zend/zend_alloc.c 	return perealloc(ptr, safe_address(nmemb, size, offset), 1);
perealloc          52 Zend/zend_ptr_stack.h 		stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->persistent);	\
perealloc         187 Zend/zend_string.h 			ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent);
perealloc         207 Zend/zend_string.h 			ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent);
perealloc         227 Zend/zend_string.h 			ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent);
perealloc        2674 ext/iconv/iconv.c 							if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc        2751 ext/iconv/iconv.c 						if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc         655 ext/mbstring/mbstring.c 	return perealloc(ptr, sz, 1);
perealloc         306 ext/mysqlnd/mysqlnd_alloc.c 		ret = perealloc(REAL_PTR(ptr), REAL_SIZE(new_size), persistent);
perealloc         689 ext/mysqlnd/mysqlnd_alloc.c 	return perealloc(ptr, new_size, persistent);
perealloc        1548 ext/standard/filters.c 						if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc        1620 ext/standard/filters.c 					if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc          49 ext/standard/php_smart_string.h #define SMART_STRING_REALLOC(a,b,c) perealloc((a),(b),(c))
perealloc         456 ext/standard/user_filters.c 			bucket->buf = perealloc(bucket->buf, Z_STRLEN_P(pzdata), bucket->is_persistent);
perealloc         401 main/streams/filter.c 						stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, stream->is_persistent);
perealloc         491 main/streams/filter.c 			stream->readbuf = perealloc(stream->readbuf, stream->writepos + flushed_size + stream->chunk_size, stream->is_persistent);
perealloc          38 main/streams/php_streams_int.h # define perealloc_rel_orig(ptr, size, persistent)			perealloc((ptr), (size), (persistent))
perealloc         619 main/streams/streams.c 							stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
perealloc         671 main/streams/streams.c 				stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
perealloc        1635 sapi/cli/php_cli_server.c 	client->request.content = perealloc(client->request.content, client->request.content_len + length, 1);