Searched refs:nodes_alloc (Results 1 – 3 of 3) sorted by relevance
1412 if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0)) in re_dfa_add_node()1414 size_t new_nodes_alloc = dfa->nodes_alloc * 2; in re_dfa_add_node()1441 dfa->nodes_alloc = new_nodes_alloc; in re_dfa_add_node()
844 dfa->nodes_alloc = pat_len + 1; in init_dfa()845 dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc); in init_dfa()1152 dfa->nexts = re_malloc (int, dfa->nodes_alloc); in analyze()1153 dfa->org_indices = re_malloc (int, dfa->nodes_alloc); in analyze()1154 dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()1155 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()
619 size_t nodes_alloc; member