Lines Matching refs:Percent
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()
567 << Percent(strings_used_prefixed_, total_prefix_index_cost_ / kPrefixIndexCost) << "\n"; in Dump()
568 os << "Short strings " << Percent(short_strings_, short_strings_ + long_strings_) << "\n"; in Dump()