Home
last modified time | relevance | path

Searched refs:sub_tops (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl2/xcvs/dist/lib/
Dregexec.c2693 re_sub_match_top_t *sub_top = mctx->sub_tops[sub_top_idx]; in get_subexp()
4137 mctx->sub_tops = re_xmalloc (re_sub_match_top_t *, n); in match_ctx_init()
4138 if (BE (mctx->bkref_ents == NULL || mctx->sub_tops == NULL, 0)) in match_ctx_init()
4164 re_sub_match_top_t *top = mctx->sub_tops[st_idx]; in match_ctx_clean()
4192 re_free (mctx->sub_tops); in match_ctx_free()
4278 assert (mctx->sub_tops != NULL); in match_ctx_add_subtop()
4284 re_sub_match_top_t **new_array = re_x2realloc (mctx->sub_tops, in match_ctx_add_subtop()
4289 mctx->sub_tops = new_array; in match_ctx_add_subtop()
4292 mctx->sub_tops[mctx->nsub_tops] = re_calloc (re_sub_match_top_t, 1); in match_ctx_add_subtop()
4293 if (BE (mctx->sub_tops[mctx->nsub_tops] == NULL, 0)) in match_ctx_add_subtop()
[all …]
Dregex_internal.h684 re_sub_match_top_t **sub_tops; member