Lines Matching refs:sub_tops
2697 re_sub_match_top_t *sub_top = mctx->sub_tops[sub_top_idx];
4142 mctx->sub_tops = re_xmalloc (re_sub_match_top_t *, n);
4143 if (BE (mctx->bkref_ents == NULL || mctx->sub_tops == NULL, 0))
4169 re_sub_match_top_t *top = mctx->sub_tops[st_idx];
4195 /* First, free all the memory associated with MCTX->SUB_TOPS. */
4197 re_free (mctx->sub_tops);
4283 assert (mctx->sub_tops != NULL);
4289 re_sub_match_top_t **new_array = re_x2realloc (mctx->sub_tops,
4294 mctx->sub_tops = new_array;
4297 mctx->sub_tops[mctx->nsub_tops] = re_calloc (re_sub_match_top_t, 1);
4298 if (BE (mctx->sub_tops[mctx->nsub_tops] == NULL, 0))
4300 mctx->sub_tops[mctx->nsub_tops]->node = node;
4301 mctx->sub_tops[mctx->nsub_tops++]->str_idx = str_idx;