Lines Matching refs:cyclenlp

351     register nltype	*cyclenlp;  in cyclelink()  local
386 cyclenlp = &cyclenl[cycle]; in cyclelink()
387 cyclenlp -> name = 0; /* the name */ in cyclelink()
388 cyclenlp -> value = 0; /* the pc entry point */ in cyclelink()
389 cyclenlp -> time = 0.0; /* ticks in this routine */ in cyclelink()
390 cyclenlp -> childtime = 0.0; /* cumulative ticks in children */ in cyclelink()
391 cyclenlp -> ncall = 0; /* how many times called */ in cyclelink()
392 cyclenlp -> selfcalls = 0; /* how many calls to self */ in cyclelink()
393 cyclenlp -> propfraction = 0.0; /* what % of time propagates */ in cyclelink()
394 cyclenlp -> propself = 0.0; /* how much self time propagates */ in cyclelink()
395 cyclenlp -> propchild = 0.0; /* how much child time propagates */ in cyclelink()
396 cyclenlp -> printflag = TRUE; /* should this be printed? */ in cyclelink()
397 cyclenlp -> index = 0; /* index in the graph list */ in cyclelink()
398 cyclenlp -> toporder = DFN_NAN; /* graph call chain top-sort order */ in cyclelink()
399 cyclenlp -> cycleno = cycle; /* internal number of cycle on */ in cyclelink()
400 cyclenlp -> cyclehead = cyclenlp; /* pointer to head of cycle */ in cyclelink()
401 cyclenlp -> cnext = nlp; /* pointer to next member of cycle */ in cyclelink()
402 cyclenlp -> parents = 0; /* list of caller arcs */ in cyclelink()
403 cyclenlp -> children = 0; /* list of callee arcs */ in cyclelink()
416 memberp -> cyclehead = cyclenlp; in cyclelink()
428 cyclenlp -> selfcalls += arcp -> arc_count; in cyclelink()
430 cyclenlp -> npropcall += arcp -> arc_count; in cyclelink()
757 nltype *cyclenlp; in cycletime() local
761 cyclenlp = &cyclenl[ cycle ]; in cycletime()
762 for ( childp = cyclenlp -> cnext ; childp ; childp = childp -> cnext ) { in cycletime()
770 cyclenlp -> time += childp -> time; in cycletime()
772 cyclenlp -> propself = cyclenlp -> propfraction * cyclenlp -> time; in cycletime()