Lines Matching refs:bytes
89 format_rate(off_t bytes) in format_rate() argument
92 static char buf[STRING_SIZE(bytes) * 2 + 16]; in format_rate()
94 bytes *= 100; in format_rate()
95 for (i = 0; bytes >= 100*1000 && unit[i] != 'T'; i++) in format_rate()
96 bytes = (bytes + 512) / 1024; in format_rate()
99 bytes = (bytes + 512) / 1024; in format_rate()
102 (long long) (bytes + 5) / 100, in format_rate()
103 (long long) (bytes + 5) / 10 % 10, in format_rate()
110 format_size(off_t bytes) in format_size() argument
113 static char buf[STRING_SIZE(bytes) + 16]; in format_size()
115 for (i = 0; bytes >= 10000 && unit[i] != 'T'; i++) in format_size()
116 bytes = (bytes + 512) / 1024; in format_size()
118 (long long) bytes, in format_size()