Home | History | Annotate | Download | only in util

Lines Matching refs:hz

311 static char *HzToHuman(unsigned long hz)
314 unsigned long long Hz;
318 Hz = hz;
321 sprintf(buffer, "%9lli", Hz);
323 if (Hz > 1000)
324 sprintf(buffer, " %6lli Mhz", (Hz+500)/1000);
326 if (Hz > 1500000)
327 sprintf(buffer, " %6.2f Ghz", (Hz+5000.0)/1000000);
329 if (Hz == turbo_frequency)