/qemu/tests/unit/ |
H A D | test-bitmap.c | 47 g_assert_cmpint(find_next_zero_bit(bmap2, 205, 60), ==, 205); in check_bitmap_copy_with_offset() 53 g_assert_cmpint(find_next_zero_bit(bmap3, 280, 135), ==, 280); in check_bitmap_copy_with_offset() 75 g_assert_cmpint(find_next_zero_bit(bmap, in bitmap_set_case() 86 g_assert_cmpint(find_next_zero_bit(bmap, 3 * BITS_PER_LONG, BITS_PER_LONG), in bitmap_set_case() 97 g_assert_cmpint(find_next_zero_bit(bmap, in bitmap_set_case() 111 g_assert_cmpint(find_next_zero_bit(bmap, in bitmap_set_case()
|
/qemu/system/ |
H A D | ram-block-attributes.c | 49 first_discarded_bit = find_next_zero_bit(attr->bitmap, last_bit + 1, in ram_block_attributes_rdm_is_populated() 95 last_bit = find_next_zero_bit(attr->bitmap, attr->bitmap_size, in ram_block_attributes_for_each_populated_section() 129 first_bit = find_next_zero_bit(attr->bitmap, attr->bitmap_size, in ram_block_attributes_for_each_discarded_section() 151 first_bit = find_next_zero_bit(attr->bitmap, in ram_block_attributes_for_each_discarded_section() 331 const bool is_populated = find_next_zero_bit(attr->bitmap, in ram_block_attributes_state_change()
|
/qemu/util/ |
H A D | bitops.c | 85 unsigned long find_next_zero_bit(const unsigned long *addr, unsigned long size, in find_next_zero_bit() function
|
H A D | bitmap.c | 368 index = find_next_zero_bit(map, size, start); in bitmap_find_next_zero_area()
|
/qemu/include/qemu/ |
H A D | bitops.h | 216 unsigned long find_next_zero_bit(const unsigned long *addr, 255 return find_next_zero_bit(addr, size, 0); in find_first_zero_bit()
|
/qemu/hw/virtio/ |
H A D | virtio-mem.c | 217 first_zero_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, in virtio_mem_for_each_unplugged_range() 233 last_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, in virtio_mem_for_each_plugged_range() 264 last_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, in virtio_mem_for_each_plugged_section() 291 first_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, first_bit); in virtio_mem_for_each_unplugged_section() 307 first_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, in virtio_mem_for_each_unplugged_section() 404 found_bit = find_next_zero_bit(vmem->bitmap, last_bit + 1, first_bit); in virtio_mem_is_range_plugged()
|
/qemu/migration/ |
H A D | ram.c | 821 next = find_next_zero_bit(bitmap, size, first + 1); in colo_bitmap_find_dirty() 2450 unsigned long run_start = find_next_zero_bit(bitmap, range, 0); in ram_postcopy_migrated_memory_release() 2458 run_start = find_next_zero_bit(bitmap, range, run_end + 1); in ram_postcopy_migrated_memory_release() 2485 zero = find_next_zero_bit(bitmap, end, one + 1); in postcopy_send_discard_bm_ram() 2572 run_start = find_next_zero_bit(bitmap, pages, run_start + 1); in postcopy_chunk_hostpages_pass() 3967 clear_bit_idx = find_next_zero_bit(bitmap, num_pages, set_bit_idx + 1); in read_ramblock_mapped_ram()
|
/qemu/chardev/ |
H A D | char-mux.c | 321 bit = find_next_zero_bit(&d->mux_bitset, MAX_MUX, 0); in mux_chr_attach_frontend()
|
/qemu/include/system/ |
H A D | ram_addr.h | 223 unsigned long found = find_next_zero_bit(blocks->blocks[idx], num, offset); in cpu_physical_memory_all_dirty()
|
/qemu/hw/xen/ |
H A D | xen-mapcache.c | 94 unsigned long res = find_next_zero_bit(addr, size + nr, nr); in test_bits()
|
/qemu/block/ |
H A D | mirror.c | 429 if (find_next_zero_bit(op->s->zero_bitmap, end, in mirror_co_zero() 1502 if (find_next_zero_bit(job->zero_bitmap, zero_bitmap_end, in do_sync_target_write()
|
H A D | iscsi.c | 588 return (find_next_zero_bit(iscsilun->allocmap_valid, size, in iscsi_allocmap_is_valid()
|
/qemu/hw/mem/ |
H A D | cxl_type3.c | 1039 return find_next_zero_bit(region->blk_bitmap, nr + nbits, nr) == nr + nbits; in ct3_test_region_block_backed()
|
/qemu/hw/hyperv/ |
H A D | vmbus.c | 1300 ret = find_next_zero_bit(vmbus->chanid_bitmap, VMBUS_CHANID_COUNT, 0); in alloc_chan_id()
|
/qemu/hw/scsi/ |
H A D | megasas.c | 497 index = find_next_zero_bit(s->frame_map, s->fw_cmds, index); in megasas_enqueue_frame()
|
/qemu/ui/ |
H A D | vnc.c | 1188 x2 = find_next_zero_bit((unsigned long *) &vs->dirty[y], in vnc_update_client()
|