Lines Matching defs:bytes
163 u64 bytes;
815 sample->bytes = ret;
825 sample->bytes += prev->bytes;
832 if (!sample->err && sample->bytes > c->max_bytes)
833 c->max_bytes = sample->bytes;
1134 double bytes;
1154 double h = (double)sample->bytes / c->max_bytes;
1220 bytes = c->total_bytes;
1221 if (bytes > 1024) {
1222 bytes = bytes / 1024;
1225 if (bytes > 1024) {
1226 bytes = bytes / 1024;
1229 if (bytes > 1024) {
1230 bytes = bytes / 1024;
1235 sprintf(comm, "%s:%i (%3.1f %sbytes)", c->comm ?: "", p->pid, bytes, suf);