HomeSort by relevance Sort by last modified time
    Searched refs:FIO_IO_U_PLAT_BITS (Results 1 - 3 of 3) sorted by null

  /external/fio/
stat.h 30 * FIO_IO_U_PLAT_BITS determines the maximum statistical error on the
32 * 1/2^(FIO_IO_U_PLAT_BITS+1) of the value.
34 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the maximum
38 * FIO_IO_U_PLAT_GROUP_NR and FIO_IO_U_PLAT_BITS determine the memory
40 * be (FIO_IO_U_PLAT_GROUP_NR * 2^FIO_IO_U_PLAT_BITS) * sizeof(int)
88 * E.g. Let M (FIO_IO_U_PLAT_BITS) be 6
109 #define FIO_IO_U_PLAT_BITS 6
110 #define FIO_IO_U_PLAT_VAL (1 << FIO_IO_U_PLAT_BITS)
stat.c 72 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
75 if (msb <= FIO_IO_U_PLAT_BITS)
79 error_bits = msb - FIO_IO_U_PLAT_BITS;
82 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
107 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
113 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
114 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
    [all...]
  /external/fio/tools/hist/
fiologparser_hist.py 135 def _plat_idx_to_val(idx, edge=0.5, FIO_IO_U_PLAT_BITS=6, FIO_IO_U_PLAT_VAL=64):
146 # MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
152 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1
153 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS)

Completed in 121 milliseconds