Searched refs:re_realloc (Results 1 – 4 of 4) sorted by relevance
/l4re-core-master/uclibc/lib/contrib/uclibc/libc/misc/regex/ |
A D | regex_internal.c | 135 wint_t *new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len); in re_string_realloc_buffers() 141 int *new_offsets = re_realloc (pstr->offsets, int, new_buf_len); in re_string_realloc_buffers() 150 unsigned char *new_mbs = re_realloc (pstr->mbs, unsigned char, in re_string_realloc_buffers() 971 int *new_elems = re_realloc (dest->elems, int, new_alloc); in re_node_set_add_intersect() 1110 int *new_buffer = re_realloc (dest->elems, int, new_alloc); in re_node_set_merge() 1209 new_elems = re_realloc (set->elems, int, set->alloc); in re_node_set_insert() 1248 new_elems = re_realloc (set->elems, int, set->alloc); in re_node_set_insert_last() 1332 new_nodes = re_realloc (dfa->nodes, re_token_t, new_nodes_alloc); in re_dfa_add_node() 1336 new_nexts = re_realloc (dfa->nexts, int, new_nodes_alloc); in re_dfa_add_node() 1337 new_indices = re_realloc (dfa->org_indices, int, new_nodes_alloc); in re_dfa_add_node() [all …]
|
A D | regcomp.c | 719 dfa = re_realloc (preg->buffer, re_dfa_t, 1); in re_compile_internal() 2608 new_array_start = re_realloc (mbcset->range_starts, wchar_t, in build_range_exp() 2610 new_array_end = re_realloc (mbcset->range_ends, wchar_t, in build_range_exp() 2844 new_array_start = re_realloc (mbcset->range_starts, uint32_t, in parse_bracket_exp() 2846 new_array_end = re_realloc (mbcset->range_ends, uint32_t, in parse_bracket_exp() 2922 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t, in parse_bracket_exp() 3109 new_mbchars = re_realloc (mbcset->mbchars, wchar_t, in parse_bracket_exp() 3388 int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes, in build_equiv_class() 3441 wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t, in build_charclass()
|
A D | regexec.c | 469 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); in re_copy_regs() 470 regoff_t *new_end = re_realloc (regs->end, regoff_t, need_regs); in re_copy_regs() 2808 new_array = re_realloc (path->array, re_dfastate_t *, path->alloc); in check_arrival() 3993 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *, in extend_buffers() 4115 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry() 4190 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop() 4217 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast()
|
A D | regex_internal.h | 379 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) macro
|
Completed in 35 milliseconds