Lines Matching refs:total_size
542 void AnalyzeStrings::Dump(std::ostream& os, uint64_t total_size) const { in Dump()
543 os << "Total string data bytes " << Percent(string_data_bytes_, total_size) << "\n"; in Dump()
545 << Percent(total_unique_string_data_bytes_, total_size) << "\n"; in Dump()
546 os << "UTF-16 string data bytes " << Percent(wide_string_bytes_, total_size) << "\n"; in Dump()
547 os << "ASCII string data bytes " << Percent(ascii_string_bytes_, total_size) << "\n"; in Dump()
555 os << "Total shared prefix bytes " << Percent(total_shared_prefix_bytes_, total_size) << "\n"; in Dump()
556 os << "Prefix dictionary cost " << Percent(total_prefix_dict_, total_size) << "\n"; in Dump()
557 os << "Prefix table cost " << Percent(total_prefix_table_, total_size) << "\n"; in Dump()
558 os << "Prefix index cost " << Percent(total_prefix_index_cost_, total_size) << "\n"; in Dump()
564 os << "Prefix base savings " << Percent(total_prefix_savings_, total_size) << "\n"; in Dump()
565 os << "Prefix net savings " << Percent(net_savings, total_size) << "\n"; in Dump()