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

References

utils/benchmark/src/benchmark.cc
  147     report.bytes_per_second = bytes_per_second;
utils/benchmark/src/console_reporter.cc
  119   if (result.bytes_per_second > 0) {
  120     rate = StrCat(" ", HumanReadableNumber(result.bytes_per_second), "B/s");
utils/benchmark/src/csv_reporter.cc
  120   if (run.bytes_per_second > 0.0) {
  121     Out << run.bytes_per_second;
utils/benchmark/src/json_reporter.cc
  184   if (run.bytes_per_second > 0.0) {
  187         << FormatKV("bytes_per_second", run.bytes_per_second);
utils/benchmark/src/statistics.cc
  133     bytes_per_second_stat.emplace_back(run.bytes_per_second);
  160     data.bytes_per_second = Stat.compute_(bytes_per_second_stat);