Home
last modified time | relevance | path

Searched refs:ncall (Results 1 – 7 of 7) sorted by relevance

/illumos-gate/usr/src/cmd/sgs/gprof/common/
H A Dprintgprof.c122 calldiff = (*npp2)->ncall - (*npp1)->ncall; in timecmp()
185 if (np->ncall != 0) { in flatprofline()
187 1000 * np->time / hz / np->ncall, in flatprofline()
259 (void) printf(" %7lld", np->ncall); in gprofline()
385 if (np1->ncall > np2->ncall) in totalcmp()
387 if (np1->ncall < np2->ncall) in totalcmp()
479 childp->cyclehead->ncall); in printchildren()
645 cyclep -> ncall); in printcycle()
669 memberp->ncall); in printmembers()
771 thischildp->ncall); in arccmp()
[all …]
H A Darcs.c154 if (childp->ncall == 0) { in timepropagate()
162 ((double)childp->ncall)); in timepropagate()
165 ((double)childp->ncall)); in timepropagate()
191 arcp->arc_count, childp->ncall); in timepropagate()
291 cyclenlp->ncall = 0; /* how many times */ in cyclelink()
344 cyclenlp->ncall += in cyclelink()
388 if (childp->ncall) { in inheritflags()
391 / ((double)childp->ncall)); in inheritflags()
415 if (headp->ncall) { in inheritflags()
419 / ((double)headp->ncall)); in inheritflags()
[all …]
H A Dgprof.c756 childp->ncall += rawp->raw_count; in tally()
759 childp->ncall += rawp->raw_count; in tally()
761 childp->ncall -= rawp->raw_count; in tally()
762 if (childp->ncall < 0) in tally()
763 childp->ncall = 0; in tally()
1944 (void) printf(" %lld ", timesortnlp[i]->ncall); in main()
H A Dgprof.h236 actype ncall; /* how many times called */ member
/illumos-gate/usr/src/cmd/truss/
H A Dfcall.c656 Stk->ncall = 0; in make_lwp_stack()
730 Stk->ncall = 0; in make_thr_stack()
798 Stk->ncall = 0; in find_lwp_stack()
840 Stk->ncall = 0; in find_stack()
861 Stk->ncall = 0; in find_stack()
902 Stk->ncall = 0; in find_stack()
1463 Stk->ncall = i; in function_entry()
1482 Stk->ncall++; in function_entry()
1514 Stk->ncall = i; in function_return()
1528 Stk->ncall = i; in function_return()
[all …]
H A Dramdata.h272 uint_t ncall; /* number of elements in stack */ member
/illumos-gate/usr/src/cmd/awk/
H A Drun.c251 int i, ncall, ndef; in call() local
270 for (ncall = 0, x = a[1]; x != NULL; x = x->nnext) /* args in call */ in call()
271 ncall++; in call()
274 s, ncall, ndef, fp-frame)); in call()
275 if (ncall > ndef) { in call()
277 s, ncall, ndef); in call()
279 if (ncall + ndef > NARGS) { in call()
281 s, ncall+ndef, NARGS); in call()
328 if (i >= ncall) { in call()