Lines Matching refs:Stats
42 #include "base/stats.h"
676 os << "OAT FILE STATS:\n";
802 const Stats& stats,
804 if (std::fabs(stats.Value()) > 0 || !stats.Children().empty()) {
805 double percent = 100.0 * stats.Value() / total;
808 << std::setw(8) << stats.Count() << " "
809 << std::setw(12) << std::fixed << std::setprecision(3) << stats.Value() / KB << "KB "
813 std::map<std::pair<double, std::string>, const Stats&> sorted_children;
814 for (const auto& it : stats.Children()) {
819 Stats other;
820 other.AddBytes(stats.Value() - stats.SumChildrenValues(), stats.Count());
821 if (std::fabs(other.Value()) > 0 && !stats.Children().empty()) {
1782 Stats stats_;
1966 os << "STATS:\n" << std::flush;
2443 struct Stats {
2475 Stats() {}
3076 std::cerr << "IMT stats:"
3097 std::cerr << " Stats:" << std::endl;
3442 } else if (option == "--dump-imt-stats") {
3548 " --dump-imt-stats: output IMT statistics for the given boot image\n"
3549 " Example: --dump-imt-stats"