Home
last modified time | relevance | path

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

/developtools/hiperf/src/
Dreport.cpp531 void Report::OutputStdItemHeating(float heat, float heat2) in OutputStdItemHeating() argument
533 if (heat == heat2 and heat == 0.0f) { in OutputStdItemHeating()
535 } else if (heat2 == 0) { in OutputStdItemHeating()
542 fprintf(output_, "%+*.2f%% ", FULL_PERCENTAGE_DIFF_NUM_LEN, heat2); in OutputStdItemHeating()
543 } else if (heat2 > heat) { in OutputStdItemHeating()
547 heat2 - heat, TEXT_RESET.c_str()); in OutputStdItemHeating()
548 } else if (heat2 < heat) { in OutputStdItemHeating()
552 heat2 - heat, TEXT_RESET.c_str()); in OutputStdItemHeating()
556 fprintf(output_, "%+*.2f%% ", FULL_PERCENTAGE_DIFF_NUM_LEN, heat2 - heat); in OutputStdItemHeating()
/developtools/hiperf/include/
Dreport.h558 void OutputStdItemHeating(float heat, float heat2);