Searched refs:perealloc (Results 1 - 15 of 15) sorted by relevance
| /PHP_5_4/Zend/ |
| H A D | zend_alloc.h | 126 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr), (size))) macro
|
| H A D | zend_ptr_stack.h | 52 stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->persistent); \
|
| H A D | zend_API.c | 3363 ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(zval*) * ce->default_static_members_count, ce->type == ZEND_INTERNAL_CLASS); 3377 ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(zval*) * ce->default_properties_count, ce->type == ZEND_INTERNAL_CLASS);
|
| H A D | zend_compile.c | 3442 ce->default_properties_table = perealloc(ce->default_properties_table, sizeof(void*) * i, ce->type == ZEND_INTERNAL_CLASS); 3493 ce->default_static_members_table = perealloc(ce->default_static_members_table, sizeof(void*) * i, ce->type == ZEND_INTERNAL_CLASS);
|
| H A D | zend_alloc.c | 2554 return perealloc(ptr, safe_address(nmemb, size, offset), 1);
|
| /PHP_5_4/ext/iconv/ |
| H A D | iconv.c | 2603 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { 2680 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
|
| /PHP_5_4/ext/mbstring/ |
| H A D | mbstring.c | 632 return perealloc(ptr, sz, 1);
|
| /PHP_5_4/ext/standard/ |
| H A D | filters.c | 1585 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) { 1657 if (NULL == (new_out_buf = perealloc(out_buf, new_out_buf_size, persistent))) {
|
| H A D | php_smart_str.h | 48 #define SMART_STR_REALLOC(a,b,c) perealloc((a),(b),(c))
|
| H A D | user_filters.c | 466 bucket->buf = perealloc(bucket->buf, Z_STRLEN_PP(pzdata), bucket->is_persistent);
|
| /PHP_5_4/main/streams/ |
| H A D | filter.c | 403 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, stream->is_persistent); 493 stream->readbuf = perealloc(stream->readbuf, stream->writepos + flushed_size + stream->chunk_size, stream->is_persistent);
|
| H A D | php_streams_int.h | 38 # define perealloc_rel_orig(ptr, size, persistent) perealloc((ptr), (size), (persistent))
|
| H A D | streams.c | 641 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen, 693 stream->readbuf = perealloc(stream->readbuf, stream->readbuflen,
|
| /PHP_5_4/sapi/apache_hooks/ |
| H A D | mod_php5.c | 130 stack->elements = (void **) perealloc(stack->elements,
|
| /PHP_5_4/ext/mysqlnd/ |
| H A D | mysqlnd_alloc.c | 302 ret = perealloc(REAL_PTR(ptr), REAL_SIZE(new_size), persistent); 677 return perealloc(ptr, new_size, persistent);
|
Completed in 53 milliseconds