Home
last modified time | relevance | path

Searched refs:perealloc (Results 1 – 18 of 18) sorted by relevance

/PHP-8.2/main/streams/
H A Dphp_streams_int.h33 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent))
H A Dfilter.c370 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, stream->is_persistent); in php_stream_filter_append_ex()
460 …stream->readbuf = perealloc(stream->readbuf, stream->writepos + flushed_size + stream->chunk_size,… in _php_stream_filter_flush()
H A Dstreams.c612 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer()
676 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer()
/PHP-8.2/Zend/
H A Dzend_smart_str.c53 str->s = (zend_string *) perealloc(str->s, str->a + _ZSTR_HEADER_SIZE + 1, 1); in smart_str_realloc()
154 str->c = perealloc(str->c, str->a + 1, 1); in _smart_string_alloc_persistent()
H A Dzend_string.h228 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_realloc()
249 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_extend()
270 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_truncate()
H A Dzend_alloc.h200 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr)… macro
H A Dzend.c1907 CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), CG(map_ptr_size) * sizeof(void*), 1); in zend_map_ptr_new()
1924 CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), CG(map_ptr_size) * sizeof(void*), 1); in zend_map_ptr_extend()
H A Dzend_gc.c549 GC_G(buf) = perealloc(GC_G(buf), sizeof(gc_root_buffer) * new_size, 1); in gc_grow_root_buffer()
H A Dzend_API.c4243 …ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval) * ce->… in zend_declare_typed_property()
4269 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_typed_property()
4273 …ce->properties_info_table = perealloc(ce->properties_info_table, sizeof(zend_property_info *) * ce… in zend_declare_typed_property()
H A Dzend_alloc.c2660 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
H A Dzend_inheritance.c3035 ce->interfaces = perealloc(ce->interfaces, in zend_do_link_class()
/PHP-8.2/ext/standard/
H A Duser_filters.c407 bucket->buf = perealloc(bucket->buf, Z_STRLEN_P(pzdata), bucket->is_persistent); in php_stream_bucket_attach()
H A Dfilters.c1414 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in strfilter_convert_append_bucket()
1476 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in strfilter_convert_append_bucket()
/PHP-8.2/ext/iconv/
H A Diconv.c2421 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in php_iconv_stream_filter_append_bucket()
2482 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in php_iconv_stream_filter_append_bucket()
/PHP-8.2/sapi/cli/
H A Dphp_cli_server.c1650 …client->request.query_string = perealloc(client->request.query_string, client->request.query_strin… in php_cli_server_client_read_request_on_query_string()
1786 …client->request.content = perealloc(client->request.content, client->request.content_len + length,… in php_cli_server_client_read_request_on_body()
/PHP-8.2/ext/opcache/jit/
H A Dzend_jit_helpers.c1650 result_str = perealloc(Z_STR_P(op1), ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(result_len)), 0); in zend_jit_fast_assign_concat_helper()
1707 perealloc(op1_str, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(result_len)), 0); in zend_jit_fast_concat_tmp_helper()
/PHP-8.2/ext/opcache/
H A DZendAccelerator.c4338 CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), CG(map_ptr_size) * sizeof(void*), 1);
/PHP-8.2/
H A DNEWS1766 . Uses safe_perealloc instead of perealloc for the

Completed in 133 milliseconds