Searched refs:sub_tops (Results 1 – 2 of 2) sorted by relevance
2743 re_sub_match_top_t *sub_top = mctx->sub_tops[sub_top_idx]; in get_subexp()4206 mctx->sub_tops = re_malloc (re_sub_match_top_t *, n); in match_ctx_init()4207 if (BE (mctx->bkref_ents == NULL || mctx->sub_tops == NULL, 0)) in match_ctx_init()4233 re_sub_match_top_t *top = mctx->sub_tops[st_idx]; in match_ctx_clean()4261 re_free (mctx->sub_tops); in match_ctx_free()4347 assert (mctx->sub_tops != NULL); in match_ctx_add_subtop()4353 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop()4358 mctx->sub_tops = new_array; in match_ctx_add_subtop()4361 mctx->sub_tops[mctx->nsub_tops] = calloc (1, sizeof (re_sub_match_top_t)); in match_ctx_add_subtop()4362 if (BE (mctx->sub_tops[mctx->nsub_tops] == NULL, 0)) in match_ctx_add_subtop()[all …]
632 re_sub_match_top_t **sub_tops; member