Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dregexp_nfa.c296 int nstate_max; in nfa_regcomp_start() local
301 nstate_max = (int)(STRLEN(expr) + 1) * 25; in nfa_regcomp_start()
305 nstate_max += 1000; in nfa_regcomp_start()
308 postfix_size = sizeof(int) * nstate_max; in nfa_regcomp_start()
314 post_end = post_start + nstate_max; in nfa_regcomp_start()
519 int nstate_max = (int)(post_end - post_start); in realloc_post_list() local
526 new_max = nstate_max * 3 / 2; in realloc_post_list()
530 mch_memmove(new_start, post_start, nstate_max * sizeof(int)); in realloc_post_list()