Searched refs:range_lob (Results 1 – 13 of 13) sorted by relevance
/openbmc/qemu/util/ |
H A D | reserved-region.c | 53 if (range_lob(range_iter) == range_lob(r)) { in resv_region_list_insert() 60 range_set_bounds(range_iter, range_lob(range_iter), in resv_region_list_insert() 61 range_lob(r) - 1); in resv_region_list_insert() 64 uint64_t lob = range_lob(range_iter); in resv_region_list_insert() 74 lob, range_lob(r) - 1); in resv_region_list_insert() 78 } else if (range_lob(r) < range_lob(range_iter)) { in resv_region_list_insert() 83 range_set_bounds(range_iter, range_lob(range_iter), in resv_region_list_insert() 84 range_lob(r) - 1); in resv_region_list_insert()
|
H A D | range.c | 97 if (range_lob(r) > low) { in range_inverse_array() 98 out = append_new_range(out, low, MIN(range_lob(r) - 1, high)); in range_inverse_array() 105 if (range_lob(r) >= high) { in range_inverse_array() 110 MIN(range_lob(rn) - 1, high)); in range_inverse_array()
|
/openbmc/qemu/qapi/ |
H A D | string-output-visitor.c | 121 if (range_lob(r) != range_upb(r)) { in format_string() 124 range_lob(r), range_upb(r)); in format_string() 128 range_lob(r), range_upb(r)); in format_string() 132 g_string_append_printf(sov->string, "0x%" PRIx64, range_lob(r)); in format_string() 134 g_string_append_printf(sov->string, "%" PRId64, range_lob(r)); in format_string()
|
/openbmc/qemu/tests/unit/ |
H A D | test-resv-mem.c | 32 prefix, i, range_lob(r), range_upb(r)); in print_ranges() 56 g_assert_true(range_lob(r) == range_lob(er) && in compare_ranges() 208 prefix, i++, r->type, range_lob(range), range_upb(range)); in print_resv_region_list()
|
/openbmc/qemu/hw/mem/ |
H A D | memory-device.c | 226 if (!QEMU_IS_ALIGNED(range_lob(&as), align)) { in memory_device_get_free_addr() 243 PRIx64 "]", *hint, size, range_lob(&as), in memory_device_get_free_addr() 248 if (range_init(&new, QEMU_ALIGN_UP(range_lob(&as), align), size)) { in memory_device_get_free_addr() 282 } else if (range_lob(&tmp) > range_upb(&new)) { in memory_device_get_free_addr() 293 return range_lob(&new); in memory_device_get_free_addr()
|
/openbmc/qemu/hw/vfio/ |
H A D | container-base.c | 91 range_set_bounds(dest, range_lob(source), range_upb(source)); in copy_iova_range()
|
/openbmc/qemu/hw/pci-host/ |
H A D | i440fx.c | 146 val64 = range_is_empty(&s->pci_hole) ? 0 : range_lob(&s->pci_hole); in i440fx_pcihost_get_pci_hole_start() 181 value = range_is_empty(&w64) ? 0 : range_lob(&w64); in i440fx_pcihost_get_pci_hole64_start_value()
|
H A D | q35.c | 88 ? 0 : range_lob(&s->mch.pci_hole); in q35_host_get_pci_hole_start() 124 value = range_is_empty(&w64) ? 0 : range_lob(&w64); in q35_host_get_pci_hole64_start_value()
|
/openbmc/qemu/include/qemu/ |
H A D | range.h | 101 static inline uint64_t range_lob(Range *range) in range_lob() function
|
/openbmc/qemu/hw/virtio/ |
H A D | virtio-iommu.c | 521 range_set_bounds(®->range, range_lob(r), range_upb(r)); in rebuild_resv_regions() 524 range_lob(®->range), in rebuild_resv_regions() 915 prop.start = cpu_to_le64(range_lob(range)); in virtio_iommu_fill_resv_mem_prop()
|
/openbmc/qemu/hw/core/ |
H A D | qdev-properties-system.c | 725 range_lob(&rr->range), range_upb(&rr->range), rr->type); in get_reserved_region()
|
/openbmc/qemu/hw/i386/ |
H A D | acpi-build.c | 1660 range_lob(pci_hole), in build_dsdt() 1673 range_lob(pci_hole64), in build_dsdt()
|
/openbmc/qemu/accel/kvm/ |
H A D | kvm-all.c | 1728 if (range_lob(&r1) < range_lob(&r2)) { in kvm_region_commit()
|