Searched refs:re_realloc (Results 1 – 4 of 4) sorted by relevance
/glibc-2.36/posix/ |
D | regex_internal.c | 153 new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len); in re_string_realloc_buffers() 159 Idx *new_offsets = re_realloc (pstr->offsets, Idx, new_buf_len); in re_string_realloc_buffers() 168 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() 1307 new_elems = re_realloc (set->elems, Idx, set->alloc); in re_node_set_insert() 1346 new_elems = re_realloc (set->elems, Idx, set->alloc); in re_node_set_insert_last() 1429 new_nodes = re_realloc (dfa->nodes, re_token_t, new_nodes_alloc); in re_dfa_add_node() 1433 new_nexts = re_realloc (dfa->nexts, Idx, new_nodes_alloc); in re_dfa_add_node() 1434 new_indices = re_realloc (dfa->org_indices, Idx, new_nodes_alloc); in re_dfa_add_node() [all …]
|
D | regcomp.c | 750 dfa = re_realloc (preg->buffer, re_dfa_t, 1); in re_compile_internal() 2758 new_array_start = re_realloc (mbcset->range_starts, wchar_t, in build_range_exp() 2760 new_array_end = re_realloc (mbcset->range_ends, wchar_t, in build_range_exp() 2990 new_array_start = re_realloc (mbcset->range_starts, uint32_t, in build_range_exp() 2992 new_array_end = re_realloc (mbcset->range_ends, uint32_t, in build_range_exp() 3068 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t, in build_collating_symbol() 3280 new_mbchars = re_realloc (mbcset->mbchars, wchar_t, in parse_bracket_exp() 3554 int32_t *new_equiv_classes = re_realloc (mbcset->equiv_classes, in build_equiv_class() 3607 wctype_t *new_char_classes = re_realloc (mbcset->char_classes, wctype_t, in build_charclass()
|
D | regexec.c | 489 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); in re_copy_regs() 493 new_end = re_realloc (regs->end, regoff_t, need_regs); in re_copy_regs() 1331 new_array = re_realloc (fs->stack, struct re_fail_stack_ent_t, in push_fail_stack() 2858 new_array = re_realloc (path->array, re_dfastate_t *, new_alloc); in check_arrival() 4009 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *, in extend_buffers() 4136 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry() 4208 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop() 4235 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast()
|
D | regex_internal.h | 465 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) macro
|