Searched refs:nodes_alloc (Results 1 – 4 of 4) sorted by relevance
858 dfa->nodes_alloc = pat_len + 1; in init_dfa()859 dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc); in init_dfa()1169 dfa->nexts = re_malloc (Idx, dfa->nodes_alloc); in analyze()1170 dfa->org_indices = re_malloc (Idx, dfa->nodes_alloc); in analyze()1171 dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()1172 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()
1414 if (__glibc_unlikely (dfa->nodes_len >= dfa->nodes_alloc)) in re_dfa_add_node()1416 size_t new_nodes_alloc = dfa->nodes_alloc * 2; in re_dfa_add_node()1450 dfa->nodes_alloc = new_nodes_alloc; in re_dfa_add_node()
641 size_t nodes_alloc; member
8596 * posix/regex_internal.h (struct re_dfa_t): Change type of nodes_alloc