Home | History | Annotate | Download | only in lib

Lines Matching refs:sub_tops

2747       re_sub_match_top_t *sub_top = mctx->sub_tops[sub_top_idx];
4211 mctx->sub_tops = re_malloc (re_sub_match_top_t *, n);
4212 if (BE (mctx->bkref_ents == NULL || mctx->sub_tops == NULL, 0))
4238 re_sub_match_top_t *top = mctx->sub_tops[st_idx];
4264 /* First, free all the memory associated with MCTX->SUB_TOPS. */
4266 re_free (mctx->sub_tops);
4352 assert (mctx->sub_tops != NULL);
4358 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops,
4363 mctx->sub_tops = new_array;
4366 mctx->sub_tops[mctx->nsub_tops] = calloc (1, sizeof (re_sub_match_top_t));
4367 if (BE (mctx->sub_tops[mctx->nsub_tops] == NULL, 0))
4369 mctx->sub_tops[mctx->nsub_tops]->node = node;
4370 mctx->sub_tops[mctx->nsub_tops++]->str_idx = str_idx;