Home
last modified time | relevance | path

Searched refs:subtop (Results 1 – 1 of 1) sorted by relevance

/glibc-2.36/posix/
Dregexec.c29 static re_sub_match_last_t * match_ctx_add_sublast (re_sub_match_top_t *subtop,
4229 match_ctx_add_sublast (re_sub_match_top_t *subtop, Idx node, Idx str_idx) in match_ctx_add_sublast() argument
4232 if (__glibc_unlikely (subtop->nlasts == subtop->alasts)) in match_ctx_add_sublast()
4234 Idx new_alasts = 2 * subtop->alasts + 1; in match_ctx_add_sublast()
4235 re_sub_match_last_t **new_array = re_realloc (subtop->lasts, in match_ctx_add_sublast()
4240 subtop->lasts = new_array; in match_ctx_add_sublast()
4241 subtop->alasts = new_alasts; in match_ctx_add_sublast()
4246 subtop->lasts[subtop->nlasts] = new_entry; in match_ctx_add_sublast()
4249 ++subtop->nlasts; in match_ctx_add_sublast()