Home
last modified time | relevance | path

Searched refs:erealloc (Results 1 – 25 of 82) sorted by relevance

1234

/PHP-5.3/ext/dba/libflatfile/
H A Dflatfile.c124 buf = erealloc(buf, buf_size); in flatfile_delete()
150 buf = erealloc(buf, buf_size); in flatfile_delete()
181 buf = erealloc(buf, buf_size); in flatfile_findkey()
199 buf = erealloc(buf, buf_size); in flatfile_findkey()
227 buf = erealloc(buf, buf_size); in flatfile_firstkey()
245 buf = erealloc(buf, buf_size); in flatfile_firstkey()
275 buf = erealloc(buf, buf_size); in flatfile_nextkey()
287 buf = erealloc(buf, buf_size); in flatfile_nextkey()
/PHP-5.3/ext/intl/
H A Dintl_common.h35 # define eurealloc(ptr, size) (UChar*)erealloc((ptr), size * sizeof(UChar))
/PHP-5.3/ext/gd/libgd/
H A Dgdhelpers.h17 #define gdRealloc(ptr, size) erealloc(ptr, size)
/PHP-5.3/Zend/
H A Dzend_dynamic_array.c47 da->array = (char *) erealloc(da->array, da->allocated*da->element_size); in zend_dynamic_array_push()
H A Dzend_static_allocator.c61 sa->Blocks = (Block *) erealloc(sa->Blocks, ++sa->num_blocks); in static_allocator_allocate()
H A Dzend_opcode.c48 op_array->opcodes = erealloc(op_array->opcodes, (op_array->size)*sizeof(zend_op)); in op_array_alloc_ops()
331 …op_array->brk_cont_array = erealloc(op_array->brk_cont_array, sizeof(zend_brk_cont_element)*op_arr… in get_next_brk_cont_element()
380 op_array->opcodes = (zend_op *) erealloc(op_array->opcodes, sizeof(zend_op)*op_array->last); in pass_two()
H A Dzend_stack.c40 stack->elements = (void **) erealloc(stack->elements, in zend_stack_push()
H A Dzend_alloc.h74 #define erealloc(ptr, size) _erealloc((ptr), (size), 0 ZEND_FILE_LINE_CC ZEND_FILE_LINE_EMPTY_C… macro
126 #define perealloc(ptr, size, persistent) ((persistent)?__zend_realloc((ptr), (size)):erealloc((ptr)…
/PHP-5.3/ext/intl/msgformat/
H A Dmsgformat_data.c86 npattern = erealloc(npattern, sizeof(UChar)*(npattern_len+1)); in msgformat_fix_quotes()
/PHP-5.3/ext/standard/
H A Dexec.c131 buf = erealloc(buf, buflen); in php_exec()
361 cmd = erealloc(cmd, y + 1); in php_escape_shell_cmd()
426 cmd = erealloc(cmd, y + 1); in php_escape_shell_arg()
H A Dquot_print.c188 ret = erealloc(ret, *ret_length + 1); in php_quot_print_encode()
H A Dstring.c872 newtext = erealloc(newtext, alloced); in PHP_FUNCTION()
933 newtext = erealloc(newtext, newtextlen+1); in PHP_FUNCTION()
992 positions = erealloc(positions, allocated*sizeof(char *)); in php_explode_negative_limit()
2538 RETURN_STRINGL(erealloc(str, q - str + 1), q - str, 0);
3222 new_str = erealloc(new_str, newlen + 1);
3307 new_str = (char *) erealloc(new_str, *new_length + 1);
3527 new_str = erealloc(new_str, *_new_length + 1);
4366 tbuf = erealloc(tbuf, (tp - tbuf) + PHP_TAG_BUF_SIZE + 1);
4384 tbuf = erealloc(tbuf, (tp - tbuf) + PHP_TAG_BUF_SIZE + 1);
4464 tbuf = erealloc(tbuf, (tp - tbuf) + PHP_TAG_BUF_SIZE + 1);
[all …]
H A Dformatted_print.c63 *buffer = erealloc(*buffer, *size); in php_sprintf_appendchar()
106 *buffer = erealloc(*buffer, *size); in php_sprintf_appendstring()
H A Dinfo.c774 …stream_protocols_buf = erealloc(stream_protocols_buf, stream_protocols_buf_len + stream_protocol_l… in php_print_info()
811 xport_buf = erealloc(xport_buf, xport_buf_size); in php_print_info()
853 filter_buf = erealloc(filter_buf, filter_buf_size); in php_print_info()
/PHP-5.3/ext/zlib/
H A Dzlib.c520 s2 = erealloc(s2, l2 + 1); in PHP_FUNCTION()
560 s2 = (char *) erealloc(s1, length); in PHP_FUNCTION()
566 s2 = erealloc(s2, length + 1); /* space for \0 */ in PHP_FUNCTION()
627 s2 = erealloc(s2,stream.total_out + 1); /* resize to buffer to the "right" size */ in PHP_FUNCTION()
686 s2 = (char *) erealloc(s1, length); in PHP_FUNCTION()
710 s2 = erealloc(s2, stream.total_out + 1); /* room for \0 */ in PHP_FUNCTION()
761 buffer = erealloc(buffer, outlen + start_offset + end_offset); in php_do_deflate()
927 …s2 = erealloc(s2, stream.total_out + GZIP_HEADER_LENGTH + (coding == CODING_GZIP ? GZIP_FOOTER_LEN… in PHP_FUNCTION()
/PHP-5.3/ext/pdo_odbc/
H A Dodbc_stmt.c78 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_utf82ucs2()
110 S->convbuf = erealloc(S->convbuf, S->convbufsize); in pdo_odbc_ucs22utf8()
491 Z_STRVAL_P(param->parameter) = erealloc(Z_STRVAL_P(param->parameter), srclen+1); in odbc_stmt_param_hook()
660 buf = erealloc(buf, used + 255+1); in odbc_stmt_get_col()
664 buf = erealloc(buf, used + C->fetched_len+1); in odbc_stmt_get_col()
/PHP-5.3/ext/intl/locale/
H A Dlocale_methods.c307 tag_value = erealloc( tag_value , buflen ); in get_icu_value_internal()
537 disp_name = erealloc( disp_name , buflen * sizeof(UChar) ); in get_icu_disp_value_src_php()
720 kw_value = erealloc( kw_value , kw_value_len+1); in PHP_FUNCTION()
723 kw_value = erealloc( kw_value , kw_value_len+1); in PHP_FUNCTION()
1463 cur_arr[i*2] = erealloc(cur_arr[i*2], strlen(lang_tag)+1); in lookup_loc_range()
/PHP-5.3/ext/fileinfo/libmagic/
H A Dfuncs.c356 pbuf = erealloc(ms->o.pbuf, psize); in file_getbuffer()
416 ms->c.li = (ms->c.li == NULL) ? emalloc(len) : erealloc(ms->c.li, len); in file_check_mem()
/PHP-5.3/ext/intl/collator/
H A Dcollator_sort.c473 sortKeyBuf = erealloc( sortKeyBuf, sortKeyBufSize ); in PHP_FUNCTION()
485 sortKeyIndxBuf = erealloc( sortKeyIndxBuf, sortKeyIndxBufSize ); in PHP_FUNCTION()
/PHP-5.3/ext/spl/
H A Dphp_spl.c523 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); in PHP_FUNCTION()
539 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); in PHP_FUNCTION()
624 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); in PHP_FUNCTION()
643 lc_name = erealloc(lc_name, func_name_len + 2 + sizeof(zend_object_handle)); in PHP_FUNCTION()
/PHP-5.3/ext/mysqlnd/
H A Dmysqlnd_debug.c969 ret = erealloc(REAL_PTR(ptr), REAL_SIZE(new_size)); in _mysqlnd_erealloc()
1294 return erealloc(ptr, new_size); in mysqlnd_zend_mm_erealloc()
1415 *str = (char*)erealloc(*str, *len + 1 + 1); \
1421 *str = (char*)erealloc(*str, *len + l + 1); \
1659 *str = (char*)erealloc(*str, *len + 1 + 1); \
1665 *str = (char*)erealloc(*str, *len + l + 1); \
/PHP-5.3/ext/xml/
H A Dxml.c302 return erealloc(ptr, sz); in php_xml_realloc_wrapper()
657 newbuf = erealloc(newbuf, (*newlen)+1); in xml_utf8_encode()
798 newbuf = erealloc(newbuf, *newlen + 1); in xml_utf8_decode()
1057 Z_STRVAL_PP(myval) = erealloc(Z_STRVAL_PP(myval),newlen+1); in _xml_characterDataHandler()
1077 Z_STRVAL_PP(myval) = erealloc(Z_STRVAL_PP(myval),newlen+1); in _xml_characterDataHandler()
/PHP-5.3/ext/pdo_dblib/
H A Ddblib_stmt.c149 S->rows = erealloc(S->rows, arows * size);
/PHP-5.3/ext/enchant/
H A Denchant.c549 …pbroker->dict = (enchant_dict **)erealloc(pbroker->dict, sizeof(enchant_dict *) * pbroker->dictcnt… in PHP_FUNCTION()
611 …pbroker->dict = (enchant_dict **)erealloc(pbroker->dict, sizeof(enchant_dict *) * pbroker->dictcnt…
/PHP-5.3/main/streams/
H A Dmemory.c64 tmp = erealloc(ms->data, ms->fpos + count); in php_stream_memory_write()
268 ms->data = erealloc(ms->data, newsize); in php_stream_memory_set_option()

Completed in 108 milliseconds

1234