Home | History | Annotate | Download | only in fio

Lines Matching defs:bps

804 	uint64_t secs, remainder, bps, bytes, iops;
808 bps = td->rate_bps[ddir];
812 iops = bps / td->o.bs[ddir];
822 } else if (bps) {
823 secs = bytes / bps;
824 remainder = bytes % bps;
825 return remainder * 1000000 / bps + secs * 1000000;