Searched refs:nodes_alloc (Results 1 – 3 of 3) sorted by relevance
1316 if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0)) in re_dfa_add_node()1318 Idx new_nodes_alloc = dfa->nodes_alloc; in re_dfa_add_node()1338 dfa->nodes_alloc = new_nodes_alloc; in re_dfa_add_node()
819 dfa->nodes_alloc = pat_len + 1; in init_dfa()820 dfa->nodes = re_xmalloc (re_token_t, dfa->nodes_alloc); in init_dfa()1099 dfa->nexts = re_malloc (Idx, dfa->nodes_alloc); in analyze()1100 dfa->org_indices = re_malloc (Idx, dfa->nodes_alloc); in analyze()1101 dfa->edests = re_xmalloc (re_node_set, dfa->nodes_alloc); in analyze()1102 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()
714 Idx nodes_alloc; member