Home
last modified time | relevance | path

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

/freebsd/lib/libc/gmon/
H A Dgmon.c139 clockinfo.profhz = hertz(); in _mcleanup()
140 } else if (clockinfo.profhz == 0) { in _mcleanup()
142 clockinfo.profhz = clockinfo.hz; in _mcleanup()
144 clockinfo.profhz = hertz(); in _mcleanup()
175 hdr->profrate = clockinfo.profhz; in _mcleanup()
/freebsd/sys/kern/
H A Dkern_clocksource.c430 while (freq < (profiling ? profhz : stathz))
654 profhz = stathz;
655 while ((profhz + stathz) <= 128 * 64)
656 profhz += stathz;
657 profhz = round_freq(timer, profhz);
661 profhz = round_freq(timer, stathz * 64);
667 profperiod = SBT_1S / profhz;
H A Dkern_clock.c370 int profhz; variable
430 if (profhz == 0) in initclocks()
431 profhz = i; in initclocks()
432 psratio = profhz / i; in initclocks()
803 clkinfo.profhz = profhz; in sysctl_kern_clockrate()
/freebsd/sys/sys/
H A Dkernel.h66 extern int profhz; /* profiling clock's frequency */
H A Dtime.h485 int profhz; /* profiling clock frequency */ member
/freebsd/sbin/sysctl/
H A Dsysctl.c674 ci->hz, ci->tick, ci->profhz, ci->stathz); in S_clockinfo()