Home
last modified time | relevance | path

Searched refs:CALIB_SCALE (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/lib/libc/gmon/
HDmcount.c141 if (p->cputime_overhead_resid >= CALIB_SCALE) { in _MCOUNT_DECL()
142 p->cputime_overhead_resid -= CALIB_SCALE; in _MCOUNT_DECL()
147 if (p->mcount_overhead_resid >= CALIB_SCALE) { in _MCOUNT_DECL()
148 p->mcount_overhead_resid -= CALIB_SCALE; in _MCOUNT_DECL()
301 if (p->cputime_overhead_resid >= CALIB_SCALE) {
302 p->cputime_overhead_resid -= CALIB_SCALE;
308 >= CALIB_SCALE) {
310 -= CALIB_SCALE;
/freebsd-11-stable/sys/kern/
HDsubr_prof.c65 for (i = 0; i < CALIB_SCALE; i++) in nullfunc_loop_profiled()
204 for (i = 0; i < CALIB_SCALE; i++)
225 for (i = 0; i < CALIB_SCALE; i++)
230 for (i = 0; i < CALIB_SCALE; i++)
245 #define CALIB_DOSCALE(count) (((count) + CALIB_SCALE / 3) / CALIB_SCALE)
/freebsd-11-stable/sys/libkern/
HDmcount.c280 for (i = 0; i < CALIB_SCALE; i++) in empty_loop()
295 for (i = 0; i < CALIB_SCALE; i++) in nullfunc_loop()
/freebsd-11-stable/sys/sys/
HDgmon.h209 #define CALIB_SCALE 1000 macro