Searched refs:nodes_alloc (Results 1 – 3 of 3) sorted by relevance
1321 if (BE (dfa->nodes_len >= dfa->nodes_alloc, 0)) in re_dfa_add_node()1323 size_t new_nodes_alloc = dfa->nodes_alloc * 2; in re_dfa_add_node()1329 if (BE (new_nodes_alloc < dfa->nodes_alloc, 0)) in re_dfa_add_node()1347 dfa->nodes_alloc = new_nodes_alloc; in re_dfa_add_node()
810 dfa->nodes_alloc = pat_len + 1; in init_dfa()811 dfa->nodes = re_malloc (re_token_t, dfa->nodes_alloc); in init_dfa()1080 dfa->nexts = re_malloc (int, dfa->nodes_alloc); in analyze()1081 dfa->org_indices = re_malloc (int, dfa->nodes_alloc); in analyze()1082 dfa->edests = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()1083 dfa->eclosures = re_malloc (re_node_set, dfa->nodes_alloc); in analyze()
556 size_t nodes_alloc; member
Completed in 12 milliseconds