Searched refs:nodes_alloc (Results 1 – 3 of 3) sorted by relevance
1328 if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0)) in re_dfa_add_node()1330 Idx new_nodes_alloc = dfa->nodes_alloc; in re_dfa_add_node()1350 dfa->nodes_alloc = new_nodes_alloc; in re_dfa_add_node()
822 dfa->nodes_alloc = pat_len + 1; in init_dfa()823 dfa->nodes = re_xmalloc (re_token_t, dfa->nodes_alloc); in init_dfa()1102 dfa->nexts = re_malloc (Idx, dfa->nodes_alloc); in analyze()1103 dfa->org_indices = re_malloc (Idx, dfa->nodes_alloc); in analyze()1104 dfa->edests = re_xmalloc (re_node_set, dfa->nodes_alloc); in analyze()1105 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()
714 Idx nodes_alloc; member