Home
last modified time | relevance | path

Searched refs:in_total (Results 1 – 2 of 2) sorted by relevance

/qemu/hw/virtio/
H A Dvirtio.c1263 unsigned int total_bufs, in_total, out_total; in virtqueue_split_get_avail_bytes() local
1271 total_bufs = in_total = out_total = 0; in virtqueue_split_get_avail_bytes()
1323 in_total += desc.len; in virtqueue_split_get_avail_bytes()
1327 if (in_total >= max_in_bytes && out_total >= max_out_bytes) { in virtqueue_split_get_avail_bytes()
1353 *in_bytes = in_total; in virtqueue_split_get_avail_bytes()
1361 in_total = out_total = 0; in virtqueue_split_get_avail_bytes()
1401 unsigned int total_bufs, in_total, out_total; in virtqueue_packed_get_avail_bytes() local
1412 total_bufs = in_total = out_total = 0; in virtqueue_packed_get_avail_bytes()
1462 in_total += desc.len; in virtqueue_packed_get_avail_bytes()
1466 if (in_total >= max_in_bytes && out_total >= max_out_bytes) { in virtqueue_packed_get_avail_bytes()
[all …]
/qemu/subprojects/libvhost-user/
H A Dlibvhost-user.c2455 unsigned int total_bufs, in_total, out_total; in vu_queue_get_avail_bytes() local
2460 total_bufs = in_total = out_total = 0; in vu_queue_get_avail_bytes()
2522 in_total += le32toh(desc[i].len); in vu_queue_get_avail_bytes()
2526 if (in_total >= max_in_bytes && out_total >= max_out_bytes) { in vu_queue_get_avail_bytes()
2547 *in_bytes = in_total; in vu_queue_get_avail_bytes()
2555 in_total = out_total = 0; in vu_queue_get_avail_bytes()
2563 unsigned int in_total, out_total; in vu_queue_avail_bytes() local
2565 vu_queue_get_avail_bytes(dev, vq, &in_total, &out_total, in vu_queue_avail_bytes()
2568 return in_bytes <= in_total && out_bytes <= out_total; in vu_queue_avail_bytes()