Home | History | Annotate | Download | only in ifpga

Lines Matching refs:profhz

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);