Searched refs:first_bit (Results 1 – 6 of 6) sorted by relevance
| /qemu/hw/virtio/ |
| A D | virtio-mem.c | 224 unsigned long first_bit, last_bit; in virtio_mem_for_each_plugged_range() local 229 while (first_bit < vmem->bitmap_size) { in virtio_mem_for_each_plugged_range() 230 offset = first_bit * vmem->block_size; in virtio_mem_for_each_plugged_range() 274 unsigned long first_bit, last_bit; in virtio_mem_for_each_plugged_section() local 279 first_bit = find_next_bit(vmem->bitmap, vmem->bitmap_size, first_bit); in virtio_mem_for_each_plugged_section() 280 while (first_bit < vmem->bitmap_size) { in virtio_mem_for_each_plugged_section() 283 offset = first_bit * vmem->block_size; in virtio_mem_for_each_plugged_section() 306 unsigned long first_bit, last_bit; in virtio_mem_for_each_unplugged_section() local 311 first_bit = find_next_zero_bit(vmem->bitmap, vmem->bitmap_size, first_bit); in virtio_mem_for_each_unplugged_section() 312 while (first_bit < vmem->bitmap_size) { in virtio_mem_for_each_unplugged_section() [all …]
|
| /qemu/scripts/kvm/ |
| A D | vmxcap | 92 def first_bit(key): function 97 for bits in sorted(self.bits.keys(), key = first_bit):
|
| /qemu/tests/qemu-iotests/ |
| A D | 257 | 114 def first_bit(self): member in EmulatedBitmap 392 ebitmap.clear_bit(ebitmap.first_bit) 396 fail_bit = ebitmap.first_bit
|
| /qemu/hw/core/ |
| A D | numa.c | 211 int i, first_bit, last_bit; in parse_numa_hmat_lb() local 353 first_bit = ctz64(bitmap_copy); in parse_numa_hmat_lb() 354 temp_base = UINT64_C(1) << first_bit; in parse_numa_hmat_lb() 363 if ((last_bit - first_bit) > UINT16_BITS || in parse_numa_hmat_lb()
|
| /qemu/tests/unit/ |
| A D | test-hbitmap.c | 828 bool first_bit = hbitmap_get(data->hb, start); in test_hbitmap_next_x_check_range() local 831 next < end && hbitmap_get(data->hb, next) == first_bit; in test_hbitmap_next_x_check_range() 841 g_assert_cmpint(next_dirty, ==, first_bit ? start : next); in test_hbitmap_next_x_check_range() 842 g_assert_cmpint(next_zero, ==, first_bit ? next : start); in test_hbitmap_next_x_check_range()
|
| /qemu/hw/pci/ |
| A D | pcie_aer.c | 424 uint8_t first_bit = ctz32(err->status); in pcie_aer_update_log() local 432 errcap |= PCI_ERR_CAP_FEP(first_bit); in pcie_aer_update_log()
|
Completed in 28 milliseconds