Home
last modified time | relevance | path

Searched refs:max_freq (Results 1 – 2 of 2) sorted by relevance

/external/linux-tools-perf/util/
Dsvghelper.c24 static u64 turbo_frequency, max_freq; variable
228 if (freq > max_freq) in cpu_model()
229 max_freq = freq; in cpu_model()
242 max_freq = __max_freq; in svg_cpu_box()
342 if (max_freq) in svg_pstate()
343 height = freq * 1.0 / max_freq * (SLOT_HEIGHT + SLOT_MULT); in svg_pstate()
/external/linux-tools-perf/
Dbuiltin-timechart.c52 static u64 max_freq; /* Highest CPU frequency seen */ variable
422 if ((u64)new_freq > max_freq) in p_state_change()
423 max_freq = new_freq; in p_state_change()
428 if (new_freq == max_freq - 1000) in p_state_change()
429 turbo_frequency = max_freq; in p_state_change()
975 svg_cpu_box(i, max_freq, turbo_frequency); in write_svg_file()