Lines Matching refs:arcp
396 arctype *arcp; in printparents() local
412 for (arcp = childp->parents; arcp; arcp = arcp->arc_parentlist) { in printparents()
413 parentp = arcp -> arc_parentp; in printparents()
421 "", "", "", "", arcp->arc_count, ""); in printparents()
434 "", arcp->arc_time / hz, arcp->arc_childtime / hz, in printparents()
435 arcp->arc_count, cycleheadp->ncall); in printparents()
450 arctype *arcp; in printchildren() local
454 for (arcp = parentp->children; arcp; arcp = arcp->arc_childlist) { in printchildren()
455 childp = arcp->arc_childp; in printchildren()
463 "", "", "", "", arcp->arc_count, ""); in printchildren()
477 arcp->arc_time / hz, in printchildren()
478 arcp->arc_childtime / hz, arcp->arc_count, in printchildren()
483 "", "", arcp->arc_time / hz, in printchildren()
484 arcp->arc_childtime / hz, arcp->arc_count, in printchildren()
549 arctype *arcp; in sortchildren() local
564 arcp = parentp->children; in sortchildren()
565 if (arcp != NULL) in sortchildren()
566 detachedp = arcp->arc_childlist; in sortchildren()
567 while (arcp != NULL) { in sortchildren()
574 if (arccmp(arcp, prevp->arc_childlist) != LESSTHAN) in sortchildren()
578 arcp->arc_childlist = prevp->arc_childlist; in sortchildren()
579 prevp->arc_childlist = arcp; in sortchildren()
581 arcp = detachedp; in sortchildren()
582 if (arcp != NULL) in sortchildren()
595 arctype *arcp; in sortparents() local
610 arcp = childp->parents; in sortparents()
611 if (arcp != NULL) in sortparents()
612 detachedp = arcp->arc_parentlist; in sortparents()
613 while (arcp != NULL) { in sortparents()
620 if (arccmp(arcp, prevp->arc_parentlist) != GREATERTHAN) in sortparents()
623 arcp->arc_parentlist = prevp->arc_parentlist; in sortparents()
624 prevp->arc_parentlist = arcp; in sortparents()
625 arcp = detachedp; in sortparents()