Home
last modified time | relevance | path

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

/original-bsd/usr.bin/gprof/
H A Dprintgprof.c54 calldiff = (*npp2) -> ncall - (*npp1) -> ncall;
100 if ( np -> ncall != 0 ) {
101 printf( " %8d %8.2f %8.2f " , np -> ncall ,
102 1000 * np -> time / hz / np -> ncall ,
150 if ( ( np -> ncall + np -> selfcalls ) != 0 ) {
177 parentp -> ncall == 0 &&
239 if ( np1 -> ncall > np2 -> ncall )
241 if ( np1 -> ncall < np2 -> ncall )
518 long thiscalls = this -> ncall + this -> selfcalls;
564 thisp -> arc_count , thischildp -> ncall );
[all …]
H A Dgprof.h104 long ncall; /* how many times called */ member
H A Darcs.c102 parentp -> ncall -= arcp -> arc_count; in doarcs()
107 parentp -> npropcall = parentp -> ncall; in doarcs()
370 cyclenlp -> ncall = 0; /* how many times called */ in cyclelink()
H A Dgprof.c432 childp -> ncall += rawp -> raw_count;
/original-bsd/old/prof/
H A Dprof.c28 long ncall; member
169 if (zflg == 0 && np->time == 0 && np->ncall == 0) in printprof()
174 if (np->ncall != 0) in printprof()
176 np->ncall, (np->time*1000/hz)/np->ncall); in printprof()
372 np->ncall += kp->cncall; in asgncntrs()
475 if (np->ncall > 0) in putprof()
480 if (np->ncall > 0) { in putprof()
482 kp.cncall = np->ncall; in putprof()
538 if (nflg && p2->ncall != p1->ncall)
539 return (p2->ncall - p1->ncall);
[all …]
/original-bsd/contrib/awk.research/
H A Drun.c181 int i, ncall, ndef; in call() local
195 for (ncall = 0, x = a[1]; x != NULL; x = x->nnext) /* args in call */ in call()
196 ncall++; in call()
198 dprintf( ("calling %s, %d args (%d in defn), fp=%d\n", s, ncall, ndef, fp-frame) ); in call()
199 if (ncall > ndef) in call()
201 s, ncall, ndef WARNING; in call()
202 if (ncall + ndef > NARGS) in call()
203 ERROR "function %s has %d arguments, limit %d", s, ncall+ndef, NARGS FATAL; in call()
244 if (i >= ncall) { in call()