Lines Matching defs:sorted
314 Arc *arc, *detached, sorted, *prev;
317 sorted's parents.
319 *detached the rest of the arcs to be sorted.
320 sorted arc list onto which you insertion sort.
322 sorted.next_parent = 0;
328 /* Consider *arc as disconnected; insert it into sorted. */
329 for (prev = &sorted; prev->next_parent; prev = prev->next_parent)
339 /* Reattach sorted arcs to child. */
340 child->cg.parents = sorted.next_parent;
401 Arc *arc, *detached, sorted, *prev;
404 sorted's children.
406 *detached the rest of the arcs to be sorted.
407 sorted arc list onto which you insertion sort.
409 sorted.next_child = 0;
415 /* Consider *arc as disconnected; insert it into sorted. */
416 for (prev = &sorted; prev->next_child; prev = prev->next_child)
426 /* Reattach sorted children to parent. */
427 parent->cg.children = sorted.next_child;