Searched defs:_vq (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/dev/virtio/ |
H A D | virtqueue.c | 107 #define VQASSERT(_vq, _exp, _msg, ...) \ argument 111 #define VQ_RING_ASSERT_VALID_IDX(_vq, _idx) \ argument 116 #define VQ_RING_ASSERT_CHAIN_TERM(_vq) \ argument 143 #define vq_modern(_vq) (((_vq)->vq_flags & VIRTQUEUE_FLAG_MODERN) != 0) argument 144 #define vq_htog16(_vq, _val) virtio_htog16(vq_modern(_vq), _val) argument 145 #define vq_htog32(_vq, _val) virtio_htog32(vq_modern(_vq), _val) argument 146 #define vq_htog64(_vq, _val) virtio_htog64(vq_modern(_vq), _val) argument 147 #define vq_gtoh16(_vq, _val) virtio_gtoh16(vq_modern(_vq), _val) argument 148 #define vq_gtoh32(_vq, _val) virtio_gtoh32(vq_modern(_vq), _val) argument 149 #define vq_gtoh64(_vq, _val) virtio_gtoh64(vq_modern(_vq), _val) argument
|