/src/sys/sys/ |
kernel.h | 62 extern int profhz; /* profiling clock's frequency */
|
/src/sys/arch/hp300/hp300/ |
clock.c | 216 if (profhz == 0) /* XXX should be set in param.c */ 217 profhz = stathz * 5; 218 else if (profhz < stathz || COUNTS_PER_SEC % profhz) { 220 profhz, stathz); 221 profhz = stathz; 226 profint = COUNTS_PER_SEC / profhz; 260 * We assume newhz is either stathz or profhz, and that neither will
|
/src/sys/arch/arm/xscale/ |
becc_timer.c | 134 * We only have one timer available; stathz and profhz are 142 if (profhz != 0) 143 printf("Cannot get %d Hz profclock\n", profhz); 144 profhz = 0; 147 aprint_normal("clock: hz=%d stathz=%d profhz=%d\n", hz, stathz, profhz); 185 * We assume that hz is either stathz or profhz, and that neither
|
i80321_timer.c | 218 * We only have one timer available; stathz and profhz are 226 if (profhz != 0) 227 aprint_error("Cannot get %d Hz profclock\n", profhz); 228 profhz = 0; 231 aprint_normal("clock: hz=%d stathz=%d profhz=%d\n", hz, stathz, profhz); 263 * We assume that hz is either stathz or profhz, and that neither
|
ixp425_timer.c | 144 * We only have one timer available; stathz and profhz are 152 if (profhz != 0) 153 aprint_error("Cannot get %d Hz profclock\n", profhz); 154 profhz = 0; 157 aprint_normal("clock: hz=%d stathz=%d profhz=%d\n", hz, stathz, profhz); 190 * We assume that hz is either stathz or profhz, and that neither
|
/src/sys/arch/evbarm/ifpga/ |
ifpga_clock.c | 219 * We assume that hz is either stathz or profhz, and that neither will 260 if (profhz == 0) 261 profhz = stathz * 5; 262 else if (profhz < stathz || COUNTS_PER_SEC % profhz) { 263 printf("cannot get %d Hz profclock; using %d Hz\n", profhz, 265 profhz = stathz; 270 profint = COUNTS_PER_SEC / profhz; 287 printf("clock: hz=%d stathz = %d profhz = %d\n", hz, stathz, profhz); [all...] |
/src/sys/arch/arm/ofw/ |
ofwgencfg_clock.c | 122 printf("clock: hz=%d stathz = %d profhz = %d\n", hz, stathz, profhz);
|
/src/sys/arch/evbarm/iq80310/ |
iq80310_timer.c | 196 * We only have one timer available; stathz and profhz are 204 if (profhz != 0) 205 printf("Cannot get %d Hz profclock\n", profhz); 206 profhz = 0; 209 printf("clock: hz=%d stathz=%d profhz=%d\n", hz, stathz, profhz); 238 * We assume that hz is either stathz or profhz, and that neither
|
/src/sys/kern/ |
kern_clock.c | 127 * profiling. This profile clock runs at profhz. We require that profhz 131 * profhz/stathz for statistics. (For profiling, every tick counts.) 135 int profhz; variable in typeref:typename:int 259 * Compute profhz and stathz, fix profhz if needed. 262 if (profhz == 0) 263 profhz = i; 264 psratio = profhz / i; 431 setstatclockrate(profhz); [all...] |
/src/sys/arch/mvme68k/mvme68k/ |
clock.c | 119 profhz = stathz; /* always */
|
/src/sys/arch/arm/gemini/ |
obio_timer.c | 249 profhz = stathz = hz; 260 profhz = stathz = hz;
|
/src/sys/arch/arm/footbridge/ |
footbridge_clock.c | 271 /* stathz and profhz should be set to something, we have the timer */ 275 if (profhz == 0) 276 profhz = stathz * 5; 279 aprint_debug("clock: hz=%d stathz = %d profhz = %d\n", hz, stathz, profhz);
|
/src/lib/libc/gmon/ |
gmon.c | 417 clockinfo.profhz = hertz(); 418 } else if (clockinfo.profhz == 0) { 420 clockinfo.profhz = clockinfo.hz; 422 clockinfo.profhz = hertz(); 470 hdr->profrate = clockinfo.profhz;
|
/src/sys/arch/atari/dev/ |
clock.c | 209 if ((profhz == 0) || (profhz > (hz << 1)) || (CLOCK_HZ % profhz)) 210 profhz = hz << 1; 217 profmin = (CLOCK_HZ/profhz) - (statvar >> 1);
|
/src/sys/compat/common/ |
kern_info_43.c | 155 long profhz; member in struct:bsdi_si 290 ksi.profhz = profhz;
|
/src/sys/arch/virt68k/virt68k/ |
clock.c | 193 profhz = stathz; /* always */
|
/src/sys/arch/arm/ep93xx/ |
epclk.c | 185 * We assume that hz is either stathz or profhz, and that neither 207 stathz = profhz = 0;
|
/src/sys/arch/sparc/sparc/ |
clock.c | 165 profhz = stathz; /* always */ 187 * Dummy setstatclockrate(), since we know profhz==hz.
|
oclock.c | 200 profhz = hz = 100;
|
/src/sys/arch/powerpc/ibm4xx/ |
clock.c | 181 stathz = profhz = ticks_per_sec / (1 << PERIOD_POWER);
|
/src/sys/arch/arm/at91/ |
at91st.c | 234 *We assume that hz is either stathz or profhz, and that neither 260 stathz = profhz = 0;
|
at91tctmr.c | 255 *We assume that hz is either stathz or profhz, and that neither 282 stathz = profhz = 0;
|
/src/sys/arch/arm/iomd/ |
iomd_clock.c | 270 aprint_normal("clock: hz=%d stathz = %d profhz = %d\n", hz, stathz, profhz);
|
/src/sys/arch/arm/ixp12x0/ |
ixp12x0_clk.c | 231 * We assume that hz is either stathz or profhz, and that neither 255 stathz = profhz = 0;
|
/src/sys/arch/arm/s3c2xx0/ |
s3c24x0_clk.c | 226 profhz = stathz;
|