Home | History | Annotate | Download | only in gprof

Lines Matching defs:sorted

313   Arc *arc, *detached, sorted, *prev;
316 sorted's parents.
318 *detached the rest of the arcs to be sorted.
319 sorted arc list onto which you insertion sort.
321 sorted.next_parent = 0;
327 /* Consider *arc as disconnected; insert it into sorted. */
328 for (prev = &sorted; prev->next_parent; prev = prev->next_parent)
338 /* Reattach sorted arcs to child. */
339 child->cg.parents = sorted.next_parent;
400 Arc *arc, *detached, sorted, *prev;
403 sorted's children.
405 *detached the rest of the arcs to be sorted.
406 sorted arc list onto which you insertion sort.
408 sorted.next_child = 0;
414 /* Consider *arc as disconnected; insert it into sorted. */
415 for (prev = &sorted; prev->next_child; prev = prev->next_child)
425 /* Reattach sorted children to parent. */
426 parent->cg.children = sorted.next_child;