Lines Matching refs:report
73 BenchmarkReporter::Run report; in CreateRunReport() local
75 report.run_name = b.name(); in CreateRunReport()
76 report.family_index = b.family_index(); in CreateRunReport()
77 report.per_family_instance_index = b.per_family_instance_index(); in CreateRunReport()
78 report.error_occurred = results.has_error_; in CreateRunReport()
79 report.error_message = results.error_message_; in CreateRunReport()
80 report.report_label = results.report_label_; in CreateRunReport()
82 report.iterations = results.iterations; in CreateRunReport()
83 report.time_unit = b.time_unit(); in CreateRunReport()
84 report.threads = b.threads(); in CreateRunReport()
85 report.repetition_index = repetition_index; in CreateRunReport()
86 report.repetitions = repeats; in CreateRunReport()
88 if (!report.error_occurred) { in CreateRunReport()
90 report.real_accumulated_time = results.manual_time_used; in CreateRunReport()
92 report.real_accumulated_time = results.real_time_used; in CreateRunReport()
94 report.cpu_accumulated_time = results.cpu_time_used; in CreateRunReport()
95 report.complexity_n = results.complexity_n; in CreateRunReport()
96 report.complexity = b.complexity(); in CreateRunReport()
97 report.complexity_lambda = b.complexity_lambda(); in CreateRunReport()
98 report.statistics = &b.statistics(); in CreateRunReport()
99 report.counters = results.counters; in CreateRunReport()
103 report.memory_result = memory_result; in CreateRunReport()
104 report.allocs_per_iter = in CreateRunReport()
110 internal::Finish(&report.counters, results.iterations, seconds, in CreateRunReport()
113 return report; in CreateRunReport()
334 BenchmarkReporter::Run report = in DoOneRepetition() local
340 if (!report.error_occurred) reports_for_family->Runs.push_back(report); in DoOneRepetition()
343 run_results.non_aggregates.push_back(report); in DoOneRepetition()