Home
last modified time | relevance | path

Searched refs:byte_offset (Results 1 – 7 of 7) sorted by relevance

/qemu/migration/
H A Dram.h69 bool ramblock_recv_bitmap_test_byte_offset(RAMBlock *rb, uint64_t byte_offset);
72 void ramblock_recv_bitmap_set_offset(RAMBlock *rb, uint64_t byte_offset);
H A Dram.c258 bool ramblock_recv_bitmap_test_byte_offset(RAMBlock *rb, uint64_t byte_offset) in ramblock_recv_bitmap_test_byte_offset() argument
260 return test_bit(byte_offset >> TARGET_PAGE_BITS, rb->receivedmap); in ramblock_recv_bitmap_test_byte_offset()
276 void ramblock_recv_bitmap_set_offset(RAMBlock *rb, uint64_t byte_offset) in ramblock_recv_bitmap_set_offset() argument
278 set_bit_atomic(byte_offset >> TARGET_PAGE_BITS, rb->receivedmap); in ramblock_recv_bitmap_set_offset()
/qemu/include/hw/hyperv/
H A Dvmbus-proto.h126 uint32_t byte_offset; member
211 uint32_t byte_offset; member
/qemu/hw/block/dataplane/
H A Dxen-block.c326 int64_t byte_offset; in xen_block_split_discard() local
338 byte_offset = sec_start * dataplane->sector_size; in xen_block_split_discard()
345 blk_aio_pdiscard(dataplane->blk, byte_offset, byte_chunk, in xen_block_split_discard()
348 byte_offset += byte_chunk; in xen_block_split_discard()
/qemu/hw/arm/
H A Domap2.c1856 int pad_offset, byte_offset; in omap_sysctl_read8() local
1862 byte_offset = (addr - 0x30) & (4 - 1); in omap_sysctl_read8()
1865 value = (value >> (byte_offset * 8)) & 0xff; in omap_sysctl_read8()
1980 int pad_offset, byte_offset; in omap_sysctl_write8() local
1986 byte_offset = (addr - 0x30) & (4 - 1); in omap_sysctl_write8()
1989 prev_value &= ~(0xff << (byte_offset * 8)); in omap_sysctl_write8()
1990 prev_value |= ((value & 0x1f1f1f1f) << (byte_offset * 8)) & 0x1f1f1f1f; in omap_sysctl_write8()
/qemu/docs/interop/
H A Dqed_spec.txt121 def logical_to_cluster_offset(l1_index, l2_index, byte_offset):
125 return cluster_offset + byte_offset
/qemu/hw/hyperv/
H A Dvmbus.c1041 if (range.byte_offset & TARGET_PAGE_MASK) { in sgl_from_gpa_ranges()
1045 for (; range.byte_count; range.byte_offset = 0) { in sgl_from_gpa_ranges()
1048 TARGET_PAGE_SIZE - range.byte_offset); in sgl_from_gpa_ranges()
1059 paddr |= range.byte_offset; in sgl_from_gpa_ranges()
1806 if (msg->rangecount != 1 || msg->range[0].byte_offset || in handle_gpadl_header()