Searched refs:profhz (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.0-release/lib/libc/gmon/
H A Dgmon.c151 clockinfo.profhz = hertz();
152 } else if (clockinfo.profhz == 0) {
154 clockinfo.profhz = clockinfo.hz;
156 clockinfo.profhz = hertz();
187 hdr->profrate = clockinfo.profhz;
/freebsd-10.0-release/sys/arm/xscale/ixp425/
H A Dixp425_timer.c164 * We only have one timer available; stathz and profhz are
172 if (profhz != 0)
173 printf("Cannot get %d Hz profclock\n", profhz);
174 profhz = 0;
/freebsd-10.0-release/sys/arm/xscale/i80321/
H A Di80321_timer.c370 * We only have one timer available; stathz and profhz are
378 if (profhz != 0)
379 printf("Cannot get %d Hz profclock\n", profhz);
380 profhz = 0;
/freebsd-10.0-release/sys/kern/
H A Dkern_clock.c367 * profiling. This profile clock runs at profhz. We require that profhz
371 * profhz/stathz for statistics. (For profiling, every tick counts.)
379 int profhz; variable
405 * Compute profhz/stathz, and fix profhz if needed.
408 if (profhz == 0)
409 profhz = i;
410 psratio = profhz / i;
834 clkinfo.profhz
[all...]
H A Dkern_clocksource.c442 while (freq < (profiling ? profhz : stathz))
637 * We would like profhz to run as often as possible.
659 profhz = stathz;
660 while ((profhz + stathz) <= 128 * 64)
661 profhz += stathz;
662 profhz = round_freq(timer, profhz);
666 profhz = round_freq(timer, stathz * 64);
672 profperiod = SBT_1S / profhz;
H A Dsubr_prof.c354 gp->profrate = profhz;
/freebsd-10.0-release/sbin/sysctl/
H A Dsysctl.c465 printf(hflag ? "{ hz = %'d, tick = %'d, profhz = %'d, stathz = %'d }" :
466 "{ hz = %d, tick = %d, profhz = %d, stathz = %d }",
467 ci->hz, ci->tick, ci->profhz, ci->stathz);
/freebsd-10.0-release/sys/arm/sa11x0/
H A Dsa11x0_ost.c252 profhz = stathz;
/freebsd-10.0-release/sys/sys/
H A Dkernel.h64 extern int profhz; /* profiling clock's frequency */
H A Dtime.h333 int profhz; /* profiling clock frequency */ member in struct:clockinfo
/freebsd-10.0-release/usr.sbin/kgmon/
H A Dkgmon.c475 clockrate.profhz = 1;
479 return (clockrate.profhz);

Completed in 84 milliseconds