q_start           629 opal/class/opal_graph.c     vertex_distance_from_t *Q, *q_start, *current_vertex;
q_start           647 opal/class/opal_graph.c     q_start = Q;
q_start           661 opal/class/opal_graph.c     qsort(q_start, number_of_items_in_q, sizeof(vertex_distance_from_t), compare_vertex_distance);
q_start           665 opal/class/opal_graph.c         current_vertex = q_start;
q_start           667 opal/class/opal_graph.c         q_start++;
q_start           672 opal/class/opal_graph.c             weight = opal_graph_adjacent(graph, current_vertex->vertex, q_start[i].vertex);
q_start           680 opal/class/opal_graph.c             if (current_vertex->weight + weight < q_start[i].weight) {
q_start           681 opal/class/opal_graph.c                 q_start[i].weight = weight + current_vertex->weight;
q_start           685 opal/class/opal_graph.c         qsort(q_start, number_of_items_in_q, sizeof(vertex_distance_from_t), compare_vertex_distance);