Searched refs:perealloc (Results 1 – 17 of 17) sorted by relevance
/php-src/main/streams/ |
H A D | php_streams_int.h | 35 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent))
|
H A D | filter.c | 370 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 D | streams.c | 616 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer() 680 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer()
|
/php-src/Zend/ |
H A D | zend_smart_str.c | 54 str->s = (zend_string *) perealloc(str->s, str->a + _ZSTR_HEADER_SIZE + 1, 1); in smart_str_realloc() 155 str->c = perealloc(str->c, str->a + 1, 1); in _smart_string_alloc_persistent()
|
H A D | zend_string.h | 252 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_realloc() 273 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_extend() 294 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_truncate()
|
H A D | zend_alloc.h | 201 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size) ZEND_FILE_LINE_… macro
|
H A D | zend.c | 2023 …CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), (zend_map_ptr_static_size + CG(map_ptr_si… in zend_map_ptr_new() 2061 …CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), (zend_map_ptr_static_size + CG(map_ptr_si… in zend_map_ptr_extend()
|
H A D | zend_API.c | 4578 …ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval) * ce->… in zend_declare_typed_property() 4604 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_typed_property() 4608 …ce->properties_info_table = perealloc(ce->properties_info_table, sizeof(zend_property_info *) * ce… in zend_declare_typed_property()
|
H A D | zend_gc.c | 620 GC_G(buf) = perealloc(GC_G(buf), sizeof(gc_root_buffer) * new_size, 1); in gc_grow_root_buffer()
|
H A D | zend_alloc.c | 2796 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
|
H A D | zend_inheritance.c | 3631 ce->interfaces = perealloc(ce->interfaces, in zend_do_link_class()
|
/php-src/ext/standard/ |
H A D | user_filters.c | 405 bucket->buf = perealloc(bucket->buf, Z_STRLEN_P(pzdata), bucket->is_persistent); in php_stream_bucket_attach()
|
H A D | filters.c | 1394 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in strfilter_convert_append_bucket() 1456 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in strfilter_convert_append_bucket()
|
/php-src/ext/iconv/ |
H A D | iconv.c | 2420 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in php_iconv_stream_filter_append_bucket() 2481 new_out_buf = perealloc(out_buf, new_out_buf_size, persistent); in php_iconv_stream_filter_append_bucket()
|
/php-src/sapi/cli/ |
H A D | php_cli_server.c | 1650 …client->request.query_string = perealloc(client->request.query_string, client->request.query_strin… in php_cli_server_client_read_request_on_query_string() 1805 …client->request.content = perealloc(client->request.content, client->request.content_len + length,… in php_cli_server_client_read_request_on_body()
|
/php-src/ext/opcache/jit/ |
H A D | zend_jit_helpers.c | 1734 result_str = perealloc(Z_STR_P(op1), ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(result_len)), 0); in zend_jit_fast_assign_concat_helper() 1795 perealloc(op1_str, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(result_len)), 0); in zend_jit_fast_concat_tmp_helper()
|
/php-src/ext/opcache/ |
H A D | ZendAccelerator.c | 4343 CG(map_ptr_real_base) = perealloc(CG(map_ptr_real_base), CG(map_ptr_size) * sizeof(void*), 1);
|
Completed in 106 milliseconds