HomeSort by: relevance | last modified time | path
    Searched refs:reports (Results 1 - 25 of 71) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
statistics.cc 78 const std::vector<BenchmarkReporter::Run>& reports) {
83 std::count_if(reports.begin(), reports.end(),
86 if (reports.size() - error_count < 2) {
95 real_accumulated_time_stat.reserve(reports.size());
96 cpu_accumulated_time_stat.reserve(reports.size());
100 int64_t const run_iterations = reports.front().iterations;
107 for (Run const& r : reports) {
113 it->second.s.reserve(reports.size());
121 for (Run const& run : reports) {
    [all...]
complexity.h 29 // list of reports. If 'reports.size() < 2' an empty vector is returned.
31 const std::vector<BenchmarkReporter::Run>& reports);
statistics.h 26 // (and any user-specified info) for the specified list of reports. If 'reports'
29 const std::vector<BenchmarkReporter::Run>& reports);
complexity.cc 156 const std::vector<BenchmarkReporter::Run>& reports) {
160 if (reports.size() < 2) return results;
168 for (const Run& run : reports) {
178 if (reports[0].complexity == oLambda) {
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda);
180 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda);
182 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity);
186 std::string run_name = reports[0].benchmark_name().substr(
187 0, reports[0].benchmark_name().find('/'));
205 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit)
    [all...]
csv_reporter.cc 45 void CSVReporter::ReportRuns(const std::vector<Run>& reports) {
50 for (const auto& run : reports) {
72 for (const auto& run : reports) {
85 for (const auto& run : reports) {
json_reporter.cc 140 void JSONReporter::ReportRuns(std::vector<Run> const& reports) {
141 if (reports.empty()) {
151 for (auto it = reports.begin(); it != reports.end(); ++it) {
156 if (++it_cp != reports.end()) {
console_reporter.cc 72 void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) {
73 for (const auto& run : reports) {
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
statistics.cc 79 const std::vector<BenchmarkReporter::Run>& reports) {
84 std::count_if(reports.begin(), reports.end(),
87 if (reports.size() - error_count < 2) {
98 real_accumulated_time_stat.reserve(reports.size());
99 cpu_accumulated_time_stat.reserve(reports.size());
100 bytes_per_second_stat.reserve(reports.size());
101 items_per_second_stat.reserve(reports.size());
105 int64_t const run_iterations = reports.front().iterations;
112 for(Run const& r : reports) {
    [all...]
complexity.h 29 // list of reports. If 'reports.size() < 2' an empty vector is returned.
31 const std::vector<BenchmarkReporter::Run>& reports);
statistics.h 26 // (and any user-specified info) for the specified list of reports. If 'reports'
29 const std::vector<BenchmarkReporter::Run>& reports);
complexity.cc 153 const std::vector<BenchmarkReporter::Run>& reports) {
157 if (reports.size() < 2) return results;
165 for (const Run& run : reports) {
175 if (reports[0].complexity == oLambda) {
176 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity_lambda);
177 result_real = MinimalLeastSq(n, real_time, reports[0].complexity_lambda);
179 result_cpu = MinimalLeastSq(n, cpu_time, reports[0].complexity);
183 reports[0].benchmark_name.substr(0, reports[0].benchmark_name.find('/'));
199 double multiplier = GetTimeUnitMultiplier(reports[0].time_unit)
    [all...]
csv_reporter.cc 45 void CSVReporter::ReportRuns(const std::vector<Run> & reports) {
50 for (const auto& run : reports) {
69 for (const auto& run : reports) {
80 for (const auto& run : reports) {
json_reporter.cc 127 void JSONReporter::ReportRuns(std::vector<Run> const& reports) {
128 if (reports.empty()) {
138 for (auto it = reports.begin(); it != reports.end(); ++it) {
143 if (++it_cp != reports.end()) {
benchmark.cc 187 std::vector<BenchmarkReporter::Run> reports; // return value local
253 reports.push_back(report);
277 auto stat_reports = ComputeStats(reports);
285 if (report_aggregates_only) reports.clear();
286 reports.insert(reports.end(), stat_reports.begin(), stat_reports.end());
287 return reports;
429 std::vector<BenchmarkReporter::Run> reports = local
431 console_reporter->ReportRuns(reports);
432 if (file_reporter) file_reporter->ReportRuns(reports);
    [all...]
console_reporter.cc 72 void ConsoleReporter::ReportRuns(const std::vector<Run>& reports) {
73 for (const auto& run : reports) {
  /src/external/gpl3/gcc/dist/.github/
CONTRIBUTING.md 7 reviews, and bug reports.
  /src/external/apache2/llvm/dist/llvm/utils/lit/lit/
cl_arguments.py 7 import lit.reports
69 type=lit.reports.JsonReport,
116 type=lit.reports.XunitReport,
117 help="Write XUnit-compatible XML test reports to the specified file")
119 type=lit.reports.TimeTraceReport,
227 opts.reports = filter(None, [opts.output, opts.xunit_xml_output, opts.time_trace_output])
main.py 17 import lit.reports
116 for report in opts.reports:
144 tests.sort(key=lit.reports.by_suite_and_test_path)
  /src/external/gpl3/gcc/dist/contrib/
test_summary 40 -f: force reports to be mailed; if omitted, only reports that differ
  /src/external/gpl3/gcc.old/dist/contrib/
test_summary 40 -f: force reports to be mailed; if omitted, only reports that differ
  /src/usr.bin/usbhidctl/
usbhid.c 706 struct Sreport reports[REPORT_MAXVAL + 1]; local
709 for (repind = 0; repind < (sizeof(reports) / sizeof(*reports));
711 reports[repind].status = srs_uninit;
712 reports[repind].buffer = NULL;
713 reports[repind].use_getreport = !zeromode;
765 repptr = &reports[repindex];
783 for (repind = 0; repind < (sizeof(reports) / sizeof(*reports));
785 setreport(&reports[repind], hidfd, repind)
    [all...]
  /src/external/apache2/llvm/dist/clang/utils/analyzer/
CmpRuns.py 5 which reports have been added, removed, or changed.
9 1. To monitor changes in the static analyzer's reports on real code bases,
212 self.reports: List[AnalysisReport] = []
213 # Cumulative list of all diagnostics from all the reports.
230 # reports. Assume that all reports were created using the same
238 # Ignore/delete empty reports.
244 # Extract the HTML reports, if they exists.
262 self.reports.append(report)
471 for report in results.reports
    [all...]
  /src/usr.sbin/sysinst/arch/i386/
msg.md.en 118 You should only change the geometry if you know the BIOS reports incorrect
  /src/external/gpl3/binutils/dist/bfd/
configure.com 260 /* Define to the address where bug reports for this package should be sent. */
  /src/external/gpl3/binutils.old/dist/bfd/
configure.com 260 /* Define to the address where bug reports for this package should be sent. */

Completed in 53 milliseconds

1 2 3