Lines Matching refs:QEMU_IS_ALIGNED

532          !QEMU_IS_ALIGNED(s->max_transfer, align))) {  in blkdebug_open()
541 !QEMU_IS_ALIGNED(s->opt_write_zero, align))) { in blkdebug_open()
550 !QEMU_IS_ALIGNED(s->max_write_zero, in blkdebug_open()
560 !QEMU_IS_ALIGNED(s->opt_discard, align))) { in blkdebug_open()
569 !QEMU_IS_ALIGNED(s->max_discard, in blkdebug_open()
640 assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); in blkdebug_co_preadv()
641 assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); in blkdebug_co_preadv()
661 assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); in blkdebug_co_pwritev()
662 assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); in blkdebug_co_pwritev()
699 assert(QEMU_IS_ALIGNED(offset, align) || in blkdebug_co_pwrite_zeroes()
700 QEMU_IS_ALIGNED(offset + bytes, align) || in blkdebug_co_pwrite_zeroes()
705 assert(QEMU_IS_ALIGNED(offset, align)); in blkdebug_co_pwrite_zeroes()
706 assert(QEMU_IS_ALIGNED(bytes, align)); in blkdebug_co_pwrite_zeroes()
729 assert(QEMU_IS_ALIGNED(offset, align) || in blkdebug_co_pdiscard()
730 QEMU_IS_ALIGNED(offset + bytes, align) || in blkdebug_co_pdiscard()
735 assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); in blkdebug_co_pdiscard()
736 assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); in blkdebug_co_pdiscard()
738 assert(QEMU_IS_ALIGNED(offset, align)); in blkdebug_co_pdiscard()
739 assert(QEMU_IS_ALIGNED(bytes, align)); in blkdebug_co_pdiscard()
760 assert(QEMU_IS_ALIGNED(offset | bytes, bs->bl.request_alignment)); in blkdebug_co_block_status()