| /PHP_TRUNK/ext/gd/libgd/ |
| H A D | gdhelpers.h | 17 #define gdRealloc(ptr, size) erealloc(ptr, size)
|
| /PHP_TRUNK/ext/intl/collator/ |
| H A D | collator_sort.c | 474 sortKeyBuf = erealloc( sortKeyBuf, sortKeyBufSize ); 486 sortKeyIndxBuf = erealloc( sortKeyIndxBuf, sortKeyIndxBufSize );
|
| /PHP_TRUNK/ext/intl/ |
| H A D | intl_common.h | 35 # define eurealloc(ptr, size) (UChar*)erealloc((ptr), size * sizeof(UChar))
|
| /PHP_TRUNK/ext/intl/locale/ |
| H A D | locale_methods.c | 305 tag_value = erealloc( tag_value , buflen ); 527 disp_name = erealloc( disp_name , buflen * sizeof(UChar) ); 710 kw_value = erealloc( kw_value , kw_value_len+1); 713 kw_value = erealloc( kw_value , kw_value_len+1); 1453 cur_arr[i*2] = erealloc(cur_arr[i*2], strlen(lang_tag)+1);
|
| /PHP_TRUNK/Zend/ |
| H A D | zend_alloc.h | 74 #define erealloc(ptr, size) _erealloc((ptr), (size), 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_CC) macro 126 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr), (size)))
|
| H A D | zend_dynamic_array.c | 47 da->array = (char *) erealloc(da->array, da->allocated*da->element_size);
|
| H A D | zend_stack.c | 36 stack->elements = (void **) erealloc(stack->elements,
|
| H A D | zend_static_allocator.c | 23 /* Not checking emalloc() and erealloc() return values as they are supposed to bailout */ 61 sa->Blocks = (Block *) erealloc(sa->Blocks, ++sa->num_blocks);
|
| H A D | zend_stream.c | 280 *buf = erealloc(*buf, ZEND_MMAP_AHEAD);
|
| H A D | zend_exceptions.c | 339 *str = (char*)erealloc(*str, *len + 1 + 1); \ 345 *str = (char*)erealloc(*str, *len + l + 1); \
|
| H A D | zend_opcode.c | 48 op_array->opcodes = erealloc(op_array->opcodes, size * sizeof(zend_op)); 453 op_array->brk_cont_array = erealloc(op_array->brk_cont_array, sizeof(zend_brk_cont_element)*op_array->last_brk_cont); 669 op_array->vars = (zend_compiled_variable *) erealloc(op_array->vars, sizeof(zend_compiled_variable)*op_array->last_var); 673 op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); 677 op_array->literals = (zend_literal*)erealloc(op_array->literals, sizeof(zend_literal) * op_array->last_literal);
|
| /PHP_TRUNK/ext/dba/libflatfile/ |
| H A D | flatfile.c | 123 buf = erealloc(buf, buf_size); 149 buf = erealloc(buf, buf_size); 180 buf = erealloc(buf, buf_size); 198 buf = erealloc(buf, buf_size); 226 buf = erealloc(buf, buf_size); 244 buf = erealloc(buf, buf_size); 274 buf = erealloc(buf, buf_size); 286 buf = erealloc(buf, buf_size);
|
| /PHP_TRUNK/ext/pdo_odbc/ |
| H A D | odbc_stmt.c | 78 S->convbuf = erealloc(S->convbuf, S->convbufsize); 110 S->convbuf = erealloc(S->convbuf, S->convbufsize); 491 Z_STRVAL_P(param->parameter) = erealloc(Z_STRVAL_P(param->parameter), srclen+1); 660 buf = erealloc(buf, used + 255+1); 664 buf = erealloc(buf, used + C->fetched_len+1);
|
| /PHP_TRUNK/ext/spl/ |
| H A D | php_spl.c | 554 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); 570 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); 662 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); 681 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle));
|
| /PHP_TRUNK/ext/standard/ |
| H A D | exec.c | 100 buf = erealloc(buf, buflen); 323 cmd = erealloc(cmd, y + 1); 388 cmd = erealloc(cmd, y + 1);
|
| H A D | formatted_print.c | 60 *buffer = erealloc(*buffer, *size); 103 *buffer = erealloc(*buffer, *size);
|
| H A D | quot_print.c | 191 ret = erealloc(ret, *ret_length + 1);
|
| /PHP_TRUNK/ext/xml/ |
| H A D | xml.c | 303 return erealloc(ptr, sz); 658 newbuf = erealloc(newbuf, (*newlen)+1); 698 newbuf = erealloc(newbuf, *newlen + 1); 952 Z_STRVAL_PP(myval) = erealloc(Z_STRVAL_PP(myval),newlen+1); 972 Z_STRVAL_PP(myval) = erealloc(Z_STRVAL_PP(myval),newlen+1);
|
| /PHP_TRUNK/main/streams/ |
| H A D | memory.c | 63 tmp = erealloc(ms->data, ms->fpos + count); 264 ms->data = erealloc(ms->data, newsize);
|
| /PHP_TRUNK/ext/mysqlnd/ |
| H A D | mysqlnd_bt.c | 30 *str = (char*)erealloc(*str, *len + 1 + 1); \ 36 *str = (char*)erealloc(*str, *len + l + 1); \
|
| /PHP_TRUNK/ext/fileinfo/libmagic/ |
| H A D | funcs.c | 356 if ((ms->o.pbuf = CAST(char *, erealloc(ms->o.pbuf, psize))) == NULL) { 420 erealloc(ms->c.li, len));
|
| /PHP_TRUNK/ext/opcache/Optimizer/ |
| H A D | zend_optimizer.c | 67 op_array->literals = (zend_literal*)erealloc(op_array->literals, op_array->last_literal * sizeof(zend_literal));
|
| H A D | optimize_func_calls.c | 44 call_stack = erealloc(call_stack, sizeof(optimizer_call_info) * stack_size);
|
| /PHP_TRUNK/ext/wddx/ |
| H A D | wddx.c | 192 stack->elements = (void **) erealloc(stack->elements, 1057 Z_STRVAL_P(ent->data) = erealloc(Z_STRVAL_P(ent->data), Z_STRLEN_P(ent->data) + len + 1); 1069 Z_STRVAL_P(ent->data) = erealloc(Z_STRVAL_P(ent->data), Z_STRLEN_P(ent->data) + len + 1);
|
| /PHP_TRUNK/ext/enchant/ |
| H A D | enchant.c | 554 pbroker->dict = (enchant_dict **)erealloc(pbroker->dict, sizeof(enchant_dict *) * pbroker->dictcnt); 612 pbroker->dict = (enchant_dict **)erealloc(pbroker->dict, sizeof(enchant_dict *) * pbroker->dictcnt);
|