Lines Matching defs:new_array
1401 struct re_fail_stack_ent_t *new_array;
1402 new_array = realloc (fs->stack, (sizeof (struct re_fail_stack_ent_t)
1404 if (new_array == NULL)
1407 fs->stack = new_array;
2940 re_dfastate_t **new_array;
2946 new_array = re_realloc (path->array, re_dfastate_t *, new_alloc);
2947 if (BE (new_array == NULL, 0))
2949 path->array = new_array;
2951 memset (new_array + old_alloc, '\0',
4153 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *,
4155 if (BE (new_array == NULL, 0))
4157 mctx->state_log = new_array;
4358 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops,
4361 if (BE (new_array == NULL, 0))
4363 mctx->sub_tops = new_array;
4385 re_sub_match_last_t **new_array = re_realloc (subtop->lasts,
4388 if (BE (new_array == NULL, 0))
4390 subtop->lasts = new_array;