• Home
  • Raw
  • Download

Lines Matching refs:report

69   BenchmarkReporter::Run report;  in CreateRunReport()  local
71 report.run_name = b.name; in CreateRunReport()
72 report.error_occurred = results.has_error_; in CreateRunReport()
73 report.error_message = results.error_message_; in CreateRunReport()
74 report.report_label = results.report_label_; in CreateRunReport()
76 report.iterations = results.iterations; in CreateRunReport()
77 report.time_unit = b.time_unit; in CreateRunReport()
79 if (!report.error_occurred) { in CreateRunReport()
81 report.real_accumulated_time = results.manual_time_used; in CreateRunReport()
83 report.real_accumulated_time = results.real_time_used; in CreateRunReport()
85 report.cpu_accumulated_time = results.cpu_time_used; in CreateRunReport()
86 report.complexity_n = results.complexity_n; in CreateRunReport()
87 report.complexity = b.complexity; in CreateRunReport()
88 report.complexity_lambda = b.complexity_lambda; in CreateRunReport()
89 report.statistics = b.statistics; in CreateRunReport()
90 report.counters = results.counters; in CreateRunReport()
93 report.has_memory_result = true; in CreateRunReport()
94 report.allocs_per_iter = in CreateRunReport()
98 report.max_bytes_used = memory_result.max_bytes_used; in CreateRunReport()
101 internal::Finish(&report.counters, results.iterations, seconds, b.threads); in CreateRunReport()
103 return report; in CreateRunReport()
329 BenchmarkReporter::Run report = CreateRunReport( in DoOneRepetition() local
332 if (!report.error_occurred && b.complexity != oNone) in DoOneRepetition()
333 complexity_reports.push_back(report); in DoOneRepetition()
335 run_results.non_aggregates.push_back(report); in DoOneRepetition()