reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/benchmark/src/console_reporter.cc
  107       (result.report_big_o || result.report_rms) ? COLOR_BLUE : COLOR_GREEN;
  107       (result.report_big_o || result.report_rms) ? COLOR_BLUE : COLOR_GREEN;
  109           result.benchmark_name.c_str());
  111   if (result.error_occurred) {
  113             result.error_message.c_str());
  119   if (result.bytes_per_second > 0) {
  120     rate = StrCat(" ", HumanReadableNumber(result.bytes_per_second), "B/s");
  125   if (result.items_per_second > 0) {
  127         StrCat(" ", HumanReadableNumber(result.items_per_second), " items/s");
  130   const double real_time = result.GetAdjustedRealTime();
  131   const double cpu_time = result.GetAdjustedCPUTime();
  133   if (result.report_big_o) {
  134     std::string big_o = GetBigOString(result.complexity);
  137   } else if (result.report_rms) {
  141     const char* timeLabel = GetTimeUnitString(result.time_unit);
  146   if (!result.report_big_o && !result.report_rms) {
  146   if (!result.report_big_o && !result.report_rms) {
  147     printer(Out, COLOR_CYAN, "%10lld", result.iterations);
  150   for (auto& c : result.counters) {
  175   if (!result.report_label.empty()) {
  176     printer(Out, COLOR_DEFAULT, " %s", result.report_label.c_str());