Lines Matching refs:cyclenlp

202 	nltype		*cyclenlp;  in cycletime()  local
206 cyclenlp = &cyclenl[cycle]; in cycletime()
207 for (childp = cyclenlp->cnext; childp; childp = childp->cnext) { in cycletime()
215 cyclenlp->time += childp->time; in cycletime()
217 cyclenlp->propself = cyclenlp->propfraction * cyclenlp->time; in cycletime()
238 nltype *cyclenlp; in cyclelink() local
282 cyclenlp = &cyclenl[cycle]; in cyclelink()
283 cyclenlp->name = 0; /* the name */ in cyclelink()
284 cyclenlp->value = 0; /* pc entry point */ in cyclelink()
285 cyclenlp->time = 0.0; /* ticks in routine */ in cyclelink()
286 cyclenlp->childtime = 0.0; /* cumulative ticks */ in cyclelink()
288 cyclenlp->ncall = 0; /* how many times */ in cyclelink()
290 cyclenlp->selfcalls = 0; /* how many calls */ in cyclelink()
292 cyclenlp->propfraction = 0.0; /* what % of time */ in cyclelink()
294 cyclenlp->propself = 0.0; /* how much self time */ in cyclelink()
296 cyclenlp->propchild = 0.0; /* how much of child */ in cyclelink()
298 cyclenlp->printflag = TRUE; /* should this be */ in cyclelink()
300 cyclenlp->index = 0; /* index in the */ in cyclelink()
302 cyclenlp->toporder = DFN_NAN; /* graph call chain */ in cyclelink()
304 cyclenlp->cycleno = cycle; /* internal number */ in cyclelink()
306 cyclenlp->cyclehead = cyclenlp; /* head of cycle ptr */ in cyclelink()
307 cyclenlp->cnext = nlp; /* ptr to next member */ in cyclelink()
309 cyclenlp->parents = 0; /* caller arcs list */ in cyclelink()
310 cyclenlp->children = 0; /* callee arcs list */ in cyclelink()
324 memberp->cyclehead = cyclenlp; in cyclelink()
338 cyclenlp->selfcalls += in cyclelink()
341 cyclenlp->ncall += arcp->arc_count; in cyclelink()