Searched refs:re_realloc (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/contrib/libgnuregex/ |
| HD | regex_internal.c | 142 new_wcs = re_realloc (pstr->wcs, wint_t, new_buf_len); in re_string_realloc_buffers() 148 int *new_offsets = re_realloc (pstr->offsets, int, new_buf_len); in re_string_realloc_buffers() 157 unsigned char *new_mbs = re_realloc (pstr->mbs, unsigned char, in re_string_realloc_buffers() 1062 int *new_elems = re_realloc (dest->elems, int, new_alloc); in re_node_set_add_intersect() 1202 int *new_buffer = re_realloc (dest->elems, int, new_alloc); in re_node_set_merge() 1302 new_elems = re_realloc (set->elems, int, set->alloc); in re_node_set_insert() 1341 new_elems = re_realloc (set->elems, int, set->alloc); in re_node_set_insert_last() 1426 new_nodes = re_realloc (dfa->nodes, re_token_t, new_nodes_alloc); in re_dfa_add_node() 1430 new_nexts = re_realloc (dfa->nexts, int, new_nodes_alloc); in re_dfa_add_node() 1431 new_indices = re_realloc (dfa->org_indices, int, new_nodes_alloc); in re_dfa_add_node() [all …]
|
| HD | regcomp.c | 753 dfa = re_realloc (preg->buffer, re_dfa_t, 1); in re_compile_internal() 2688 new_array_start = re_realloc (mbcset->range_starts, wchar_t, in build_range_exp() 2690 new_array_end = re_realloc (mbcset->range_ends, wchar_t, in build_range_exp() 2916 new_array_start = re_realloc (mbcset->range_starts, uint32_t, in parse_bracket_exp() 2918 new_array_end = re_realloc (mbcset->range_ends, uint32_t, in parse_bracket_exp() 2992 int32_t *new_coll_syms = re_realloc (mbcset->coll_syms, int32_t, in parse_bracket_exp() 3183 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()
|
| HD | regexec.c | 527 regoff_t *new_start = re_realloc (regs->start, regoff_t, need_regs); 531 new_end = re_realloc (regs->end, regoff_t, need_regs); 2918 new_array = re_realloc (path->array, re_dfastate_t *, path->alloc); in check_arrival() 4127 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *, in extend_buffers() 4249 new_entry = re_realloc (mctx->bkref_ents, struct re_backref_cache_entry, in match_ctx_add_entry() 4324 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop() 4351 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast()
|
| HD | regex_internal.h | 438 #define re_realloc(p,t,n) ((t *) realloc (p, (n) * sizeof (t))) macro
|