Searched refs:augmenting_path (Results 1 - 1 of 1) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Dmcf.c723 init_augmenting_path (augmenting_path_type *augmenting_path, int graph_size) argument
725 augmenting_path->queue_list.queue = (int *)
727 augmenting_path->queue_list.size = graph_size + 2;
728 augmenting_path->bb_pred = (int *) xcalloc (graph_size, sizeof (int));
729 augmenting_path->is_visited = (int *) xcalloc (graph_size, sizeof (int));
734 free_augmenting_path (augmenting_path_type *augmenting_path) argument
736 free (augmenting_path->queue_list.queue);
737 free (augmenting_path->bb_pred);
738 free (augmenting_path->is_visited);
972 augmenting_path_type *augmenting_path, in
971 find_augmenting_path(fixup_graph_type *fixup_graph, augmenting_path_type *augmenting_path, int source, int sink) argument
1042 augmenting_path_type augmenting_path; local
[all...]

Completed in 33 milliseconds