Searched defs:min_bs (Results 1 - 5 of 5) sorted by relevance

/external/fio/
H A Dio_u.c38 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_WRIT
[all...]
H A Dfio.h602 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);
H A Doptions.c68 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;
1736 .off1 = td_var_offset(min_bs[DDIR_READ]),
1738 .off3 = td_var_offset(min_bs[DDIR_WRITE]),
1740 .off5 = td_var_offset(min_bs[DDIR_TRIM]),
H A Dthread_options.h69 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
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c1882 BLOCK_SIZE *min_bs, BLOCK_SIZE *max_bs) {
1929 *min_bs = min_size;
1880 set_partition_range(VP9_COMMON *cm, MACROBLOCKD *xd, int mi_row, int mi_col, BLOCK_SIZE bsize, BLOCK_SIZE *min_bs, BLOCK_SIZE *max_bs) argument

Completed in 340 milliseconds