Lines Matching refs:new_array
1398 struct re_fail_stack_ent_t *new_array; in push_fail_stack() local
1399 new_array = realloc (fs->stack, (sizeof (struct re_fail_stack_ent_t) in push_fail_stack()
1401 if (new_array == NULL) in push_fail_stack()
1404 fs->stack = new_array; in push_fail_stack()
2936 re_dfastate_t **new_array; in check_arrival() local
2942 new_array = re_realloc (path->array, re_dfastate_t *, new_alloc); in check_arrival()
2943 if (BE (new_array == NULL, 0)) in check_arrival()
2945 path->array = new_array; in check_arrival()
2947 memset (new_array + old_alloc, '\0', in check_arrival()
4149 re_dfastate_t **new_array = re_realloc (mctx->state_log, re_dfastate_t *, in extend_buffers() local
4151 if (BE (new_array == NULL, 0)) in extend_buffers()
4153 mctx->state_log = new_array; in extend_buffers()
4353 re_sub_match_top_t **new_array = re_realloc (mctx->sub_tops, in match_ctx_add_subtop() local
4356 if (BE (new_array == NULL, 0)) in match_ctx_add_subtop()
4358 mctx->sub_tops = new_array; in match_ctx_add_subtop()
4380 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast() local
4383 if (BE (new_array == NULL, 0)) in match_ctx_add_sublast()
4385 subtop->lasts = new_array; in match_ctx_add_sublast()