Home | History | Annotate | Download | only in runtime

Lines Matching refs:byte_count

451 std::string PrettySize(int64_t byte_count) {
463 if (byte_count < 0) {
465 byte_count = -byte_count;
469 if (byte_count >= kUnitThresholds[i]) {
474 negative_str, byte_count / kBytesPerUnit[i], kUnitStrings[i]);