perealloc        3431 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        3445 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        2598 Zend/zend_alloc.c 	return perealloc(ptr, safe_address(nmemb, size, offset), 1);
perealloc        3638 Zend/zend_compile.c 		ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(void*) * i, ce->type == ZEND_INTERNAL_CLASS);
perealloc        3689 Zend/zend_compile.c 			ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(void*) * i, ce->type == ZEND_INTERNAL_CLASS);
perealloc          52 Zend/zend_ptr_stack.h 		stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->persistent);	\
perealloc        2633 ext/iconv/iconv.c 							if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc        2710 ext/iconv/iconv.c 						if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc         632 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        1624 ext/standard/filters.c 						if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc        1696 ext/standard/filters.c 					if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
perealloc          48 ext/standard/php_smart_str.h #define SMART_STR_REALLOC(a,b,c) perealloc((a),(b),(c))
perealloc         471 ext/standard/user_filters.c 			bucket->buf = perealloc(bucket->buf, Z_STRLEN_PP(pzdata), bucket->is_persistent);
perealloc         403 main/streams/filter.c 						stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, stream->is_persistent);
perealloc         493 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         636 main/streams/streams.c 							stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
perealloc         688 main/streams/streams.c 				stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
perealloc         130 sapi/apache_hooks/mod_php5.c 				stack->elements = (void **) perealloc(stack->elements,
perealloc        1731 sapi/cli/php_cli_server.c 	client->request.content = perealloc(client->request.content, client->request.content_len + length, 1);