Home
last modified time | relevance | path

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

/PHP-7.1/main/streams/
H A Dphp_streams_int.h38 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent))
H A Dfilter.c401 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, stream->is_persistent); in php_stream_filter_append_ex()
491 …stream->readbuf = perealloc(stream->readbuf, stream->writepos + flushed_size + stream->chunk_size,… in _php_stream_filter_flush()
H A Dstreams.c619 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer()
671 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, in _php_stream_fill_read_buffer()
/PHP-7.1/Zend/
H A Dzend_string.h188 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_realloc()
208 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_extend()
228 ret = (zend_string *)perealloc(s, ZEND_MM_ALIGNED_SIZE(_ZSTR_STRUCT_SIZE(len)), persistent); in zend_string_truncate()
H A Dzend_ptr_stack.h52 …stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->per… in END_EXTERN_C()
H A Dzend_string.c53 known_interned_strings = perealloc(known_interned_strings, sizeof(char*) * (old_count + count), 1); in zend_intern_known_strings()
H A Dzend_alloc.h207 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr)… macro
H A Dzend_API.c3640 …ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval) * ce->… in zend_declare_property_ex()
3655 …ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval) * ce->default_… in zend_declare_property_ex()
H A Dzend_alloc.c2503 return perealloc(ptr, zend_safe_address_guarded(nmemb, size, offset), 1);
/PHP-7.1/ext/standard/
H A Dphp_smart_string.h49 #define SMART_STRING_REALLOC(a,b,c) perealloc((a),(b),(c))
H A Duser_filters.c456 bucket->buf = perealloc(bucket->buf, Z_STRLEN_P(pzdata), bucket->is_persistent); in php_stream_bucket_attach()
H A Dfilters.c1551 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { in strfilter_convert_append_bucket()
1623 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { in strfilter_convert_append_bucket()
/PHP-7.1/sapi/cli/
H A Dphp_cli_server.c1632 client->current_header_name = perealloc(client->current_header_name, new_length + 1, 1); in php_cli_server_client_read_request_on_header_field()
1664 client->current_header_value = perealloc(client->current_header_value, new_length + 1, 1); in php_cli_server_client_read_request_on_header_value()
1708 …client->request.content = perealloc(client->request.content, client->request.content_len + length,… in php_cli_server_client_read_request_on_body()
/PHP-7.1/ext/iconv/
H A Diconv.c2716 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { in php_iconv_stream_filter_append_bucket()
2793 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { in php_iconv_stream_filter_append_bucket()
/PHP-7.1/ext/mbstring/
H A Dmbstring.c656 return perealloc(ptr, sz, 1); in _php_mb_allocators_prealloc()

Completed in 84 milliseconds