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

  /external/fio/
init.c 454 unsigned int bs = td->o.min_bs[ddir];
488 return o->min_bs[DDIR_READ] == o->max_bs[DDIR_READ] &&
489 o->min_bs[DDIR_WRITE] == o->max_bs[DDIR_WRITE] &&
490 o->min_bs[DDIR_TRIM] == o->max_bs[DDIR_TRIM] &&
491 o->min_bs[DDIR_READ] == o->min_bs[DDIR_WRITE] &&
492 o->min_bs[DDIR_READ] == o->min_bs[DDIR_TRIM];
555 if (!o->min_bs[DDIR_READ])
556 o->min_bs[DDIR_READ] = o->bs[DDIR_READ]
    [all...]
fio.h 602 unsigned int min_bs; local
604 min_bs = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
605 return min(td->o.min_bs[DDIR_TRIM], min_bs);
io_u.c 38 unsigned int min_bs = td->o.rw_min_bs; local
43 block = (io_u->offset - f->file_offset) / (uint64_t) min_bs;
44 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
49 if ((nr_blocks * min_bs) < io_u->buflen)
50 io_u->buflen = nr_blocks * min_bs;
71 if (td->o.min_bs[ddir] > td->o.ba[ddir])
72 max_size -= td->o.min_bs[ddir] - td->o.ba[ddir];
437 minbs = td->o.min_bs[ddir];
1488 td->o.min_bs[DDIR_WRITE]
    [all...]
thread_options.h 69 unsigned int min_bs[DDIR_RWDIR_CNT]; member in struct:thread_options
298 uint32_t min_bs[DDIR_RWDIR_CNT]; member in struct:thread_options_pack
cconv.c 97 o->min_bs[i] = le32_to_cpu(top->min_bs[i]);
410 top->min_bs[i] = cpu_to_le32(o->min_bs[i]);
options.c 68 unsigned int max_bs, min_bs; local
77 min_bs = -1;
113 if (val < min_bs)
114 min_bs = val;
157 o->min_bs[ddir] = min_bs;
    [all...]
filesetup.c 990 range_size = min(td->o.min_bs[DDIR_READ], td->o.min_bs[DDIR_WRITE]);
gclient.c 611 c1 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
613 c3 = fio_uint_to_kmg(o->min_bs[DDIR_READ]);
    [all...]
backend.c 1025 min_write = td->o.min_bs[DDIR_WRITE];
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodeframe.c     [all...]

Completed in 351 milliseconds