Home | History | Annotate | Download | only in gprof

Lines Matching refs:arc

24  * Arc structure for call-graph.
27 * of how many times this arc was traversed, and pointers to the next
30 typedef struct arc
32 Sym *parent; /* source vertice of arc */
33 Sym *child; /* dest vertice of arc */
35 double time; /* time inherited along arc */
36 double child_time; /* child-time inherited along arc */
37 struct arc *next_parent; /* next parent of CHILD */
38 struct arc *next_child; /* next child of PARENT */
39 int has_been_placed; /* have this arc's functions been placed? */
41 Arc;
47 extern Arc *arc_lookup (Sym * parent, Sym * child);
49 extern Arc **arcs;