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

  /external/fio/
fio.h 594 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);
blktrace.c 441 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];
init.c 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] &&
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_WRITE] != o->min_bs[DDIR_WRITE] &
    [all...]
thread_options.h 70 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
io_u.c 438 maxbs = td->o.max_bs[ddir];
    [all...]
backend.c 1018 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;
    [all...]
cconv.c 98 o->max_bs[i] = le32_to_cpu(top->max_bs[i]);
411 top->max_bs[i] = cpu_to_le32(o->max_bs[i]);
filesetup.c 139 b = malloc(td->o.max_bs[DDIR_WRITE]);
143 bs = td->o.max_bs[DDIR_WRITE];
221 bs = td->o.max_bs[DDIR_READ];
options.c 68 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;
    [all...]
iolog.c 428 if (rw != DDIR_INVAL && bytes > td->o.max_bs[rw])
429 td->o.max_bs[rw] = bytes;
gclient.c 612 c2 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
614 c4 = fio_uint_to_kmg(o->max_bs[DDIR_WRITE]);
    [all...]
  /external/fio/engines/
glusterfs.c 180 b = malloc(td->o.max_bs[DDIR_WRITE]);
184 bs = td->o.max_bs[DDIR_WRITE];
rdma.c 1052 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/
vp9_encodeframe.c     [all...]

Completed in 706 milliseconds