Home
last modified time | relevance | path

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

/freebsd/usr.bin/gprof/
H A Dprintgprof.c83 calldiff = (*npp2) -> ncall - (*npp1) -> ncall; in timecmp()
126 if ( zflag == 0 && np -> ncall == 0 && np -> time == 0 && in flatprofline()
137 if ( np -> ncall != 0 ) { in flatprofline()
139 printf( " %8ld %8.0f %8.0f " , np -> ncall , in flatprofline()
140 1e9 * np -> time / hz / np -> ncall , in flatprofline()
141 1e9 * ( np -> time + np -> childtime ) / hz / np -> ncall ); in flatprofline()
143 printf( " %8ld %8.0f %8.0f " , np -> ncall , in flatprofline()
144 1e6 * np -> time / hz / np -> ncall , in flatprofline()
145 1e6 * ( np -> time + np -> childtime ) / hz / np -> ncall ); in flatprofline()
147 printf( " %8ld %8.2f %8.2f " , np -> ncall , in flatprofline()
[all …]
H A Darcs.c128 parentp -> ncall -= arcp -> arc_count; in doarcs()
133 parentp -> npropcall = parentp -> ncall; in doarcs()
391 cyclenlp -> ncall = 0; /* how many times called */ in cyclelink()
H A Dgprof.h118 long ncall; /* how many times called */ member
H A Dgprof.c320 childp -> ncall += rawp -> raw_count; in tally()
/freebsd/contrib/one-true-awk/
H A Drun.c233 int i, ncall, ndef; in call() local
249 for (ncall = 0, x = a[1]; x != NULL; x = x->nnext) /* args in call */ in call()
250 ncall++; in call()
252 DPRINTF("calling %s, %d args (%d in defn), frp=%d\n", s, ncall, ndef, (int) (frp-frame)); in call()
253 if (ncall > ndef) in call()
255 s, ncall, ndef); in call()
256 if (ncall + ndef > NARGS) in call()
257 FATAL("function %s has %d arguments, limit %d", s, ncall+ndef, NARGS); in call()
297 if (i >= ncall) { in call()
/freebsd/usr.bin/truss/
H A Dsyscalls.c2813 int ncall, nerror; in print_summary() local
2817 ncall = nerror = 0; in print_summary()
2824 ncall += sc->ncalls; in print_summary()
2831 "", (intmax_t)total.tv_sec, total.tv_nsec, ncall, nerror); in print_summary()