Searched refs:max_bs (Results 1 - 14 of 14) sorted by relevance

/external/fio/
H A Dfio.h594 unsigned int max_bs; local
596 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
597 return max(td->o.max_bs[DDIR_TRIM], max_bs);
H A Dblktrace.c441 td->o.max_bs[DDIR_READ] = rw_bs[DDIR_READ];
444 td->o.max_bs[DDIR_WRITE] = rw_bs[DDIR_WRITE];
447 td->o.max_bs[DDIR_READ] = rw_bs[DDIR_READ];
448 td->o.max_bs[DDIR_WRITE] = rw_bs[DDIR_WRITE];
449 td->o.max_bs[DDIR_TRIM] = rw_bs[DDIR_TRIM];
H A Dinit.c488 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] &&
557 if (!o->max_bs[DDIR_READ])
558 o->max_bs[DDIR_READ] = o->bs[DDIR_READ];
561 if (!o->max_bs[DDIR_WRITE])
562 o->max_bs[DDIR_WRITE] = o->bs[DDIR_WRITE];
565 if (!o->max_bs[DDIR_TRIM])
566 o->max_bs[DDIR_TRIM] = o->bs[DDIR_TRIM];
664 if (o->max_bs[DDIR_WRIT
[all...]
H A Dthread_options.h70 unsigned int max_bs[DDIR_RWDIR_CNT]; member in struct:thread_options
299 uint32_t max_bs[DDIR_RWDIR_CNT]; member in struct:thread_options_pack
H A Dio_u.c438 maxbs = td->o.max_bs[ddir];
1868 unsigned int max_bs)
1875 unsigned int left = max_bs;
1900 fill_buffer_pattern(td, buf, max_bs);
1902 memset(buf, 0, max_bs);
1909 unsigned int min_write, unsigned int max_bs)
1912 fill_io_buffer(td, io_u->buf, min_write, max_bs);
1867 fill_io_buffer(struct thread_data *td, void *buf, unsigned int min_write, unsigned int max_bs) argument
1908 io_u_fill_buffer(struct thread_data *td, struct io_u *io_u, unsigned int min_write, unsigned int max_bs) argument
H A Dbackend.c1018 unsigned int max_bs, min_write; local
1024 max_bs = td_max_bs(td);
1026 td->orig_buffer_size = (unsigned long long) max_bs
1060 log_err("fio: IO memory too large. Reduce max_bs or iodepth\n");
1097 io_u_fill_buffer(td, io_u, min_write, max_bs);
1103 fill_verify_pattern(td, io_u->buf, max_bs, io_u, 0, 0);
1126 p += max_bs;
H A Dcconv.c98 o->max_bs[i] = le32_to_cpu(top->max_bs[i]);
411 top->max_bs[i] = cpu_to_le32(o->max_bs[i]);
H A Dfilesetup.c139 b = malloc(td->o.max_bs[DDIR_WRITE]);
143 bs = td->o.max_bs[DDIR_WRITE];
221 bs = td->o.max_bs[DDIR_READ];
H A Doptions.c68 unsigned int max_bs, min_bs; local
76 max_bs = 0;
111 if (val > max_bs)
112 max_bs = val;
158 o->max_bs[ddir] = max_bs;
1737 .off2 = td_var_offset(max_bs[DDIR_READ]),
1739 .off4 = td_var_offset(max_bs[DDIR_WRITE]),
1741 .off6 = td_var_offset(max_bs[DDIR_TRIM]),
H A Diolog.c428 if (rw != DDIR_INVAL && bytes > td->o.max_bs[rw])
429 td->o.max_bs[rw] = bytes;
H A Dgclient.c612 c2 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
614 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
/external/fio/engines/
H A Dglusterfs.c180 b = malloc(td->o.max_bs[DDIR_WRITE]);
184 bs = td->o.max_bs[DDIR_WRITE];
H A Drdma.c1052 unsigned int max_bs; local
1153 max_bs = max(td->o.max_bs[DDIR_READ], td->o.max_bs[DDIR_WRITE]);
1162 io_u->mr = ibv_reg_mr(rd->pd, io_u->buf, max_bs,
1174 rd->send_buf.rmt_us[i].size = htonl(max_bs);
1177 log_info("fio: Send rkey %x addr %" PRIx64 " len %d to client\n", io_u->mr->rkey, io_u->buf, max_bs); */
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_encodeframe.c2697 BLOCK_SIZE *min_bs, BLOCK_SIZE *max_bs) {
2745 *max_bs = max_size;
2695 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 765 milliseconds