Searched refs:re_realloc (Results 1 – 4 of 4) sorted by relevance
/ndk/sources/host-tools/sed-4.2.1/lib/ |
D | regex_internal.c | 145 new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len); in re_string_realloc_buffers() 151 Idx *new_offsets = re_realloc (pstr->offsets, Idx, new_buf_len); in re_string_realloc_buffers() 160 unsigned char *new_mbs = re_realloc (pstr->mbs, unsigned char, in re_string_realloc_buffers() 1065 Idx *new_elems = re_realloc (dest->elems, Idx, new_alloc); in re_node_set_add_intersect() 1205 Idx *new_buffer = re_realloc (dest->elems, Idx, new_alloc); in re_node_set_merge() 1301 new_elems = re_realloc (set->elems, Idx, set->alloc); in re_node_set_insert() 1340 new_elems = re_realloc (set->elems, Idx, set->alloc); in re_node_set_insert_last() 1425 new_nodes = re_realloc (dfa->nodes, re_token_t, new_nodes_alloc); in re_dfa_add_node() 1429 new_nexts = re_realloc (dfa->nexts, Idx, new_nodes_alloc); in re_dfa_add_node() 1430 new_indices = re_realloc (dfa->org_indices, Idx, new_nodes_alloc); in re_dfa_add_node() [all …]
|
D | regcomp.c | 777 dfa = re_realloc (preg->buffer, re_dfa_t, 1); in re_compile_internal() 2678 new_array_start = re_realloc (mbcset->range_starts, wchar_t, in build_range_exp() 2680 new_array_end = re_realloc (mbcset->range_ends, wchar_t, in build_range_exp() 2919 new_array_start = re_realloc (mbcset->range_starts, uint32_t, in parse_bracket_exp() 2921 new_array_end = re_realloc (mbcset->range_ends, uint32_t, in parse_bracket_exp() 2998 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t, in parse_bracket_exp() 3186 new_mbchars = re_realloc (mbcset->mbchars, wchar_t, in parse_bracket_exp() 3465 int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes, in build_equiv_class() 3518 wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t, in build_charclass()
|
D | regexec.c | 542 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); in re_copy_regs() 546 new_end = re_realloc (regs->end, regoff_t, need_regs); in re_copy_regs() 2942 new_array = re_realloc (path->array, re_dfastate_t *, new_alloc); in check_arrival() 4149 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *, in extend_buffers() 4278 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry() 4353 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop() 4380 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast()
|
D | regex_internal.h | 481 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) macro
|