HomeSort by relevance Sort by last modified time
    Searched defs:cpu_hz (Results 1 - 2 of 2) sorted by null

  /onnv/onnv-gate/usr/src/cmd/filebench/common/
misc.c 53 uint64_t cpu_hz = 0; variable
78 hrt = 1000000000UL * rdtsc() / cpu_hz;
84 * Converts to cpu_hz and stores in cpu_hz global uint64_t.
156 cpu_hz = parse_cpu_hz();
157 if (cpu_hz <= 0) {
  /onnv/onnv-gate/usr/src/uts/i86pc/os/
mp_machdep.c 1157 uint64_t cpu_hz; local
1163 cpu_hz = ((uint64_t)PIT_HZ * *processor_clks) / pit_counter;
1165 return (cpu_hz);
1175 uint64_t cpu_hz; local
1196 cpu_hz = 1000 * xpv_cpu_khz();
1198 cpu_hz = (UINT64_C(1000000000) << 32) / vti->tsc_to_system_mul;
1201 cpu_hz <<= -vti->tsc_shift;
1203 cpu_hz >>= vti->tsc_shift;
1208 "cpu_hz %" PRId64 "Hz\n",
1209 vti->tsc_to_system_mul, vti->tsc_shift, cpu_hz);
    [all...]

Completed in 60 milliseconds