Lines Matching refs:end
652 uint64_t address, size, base, end; in hv_emulate_mmio() local
670 end = mmio_handler->range_end; in hv_emulate_mmio()
672 if (((address + size) <= base) || (address >= end)) { in hv_emulate_mmio()
675 if ((address >= base) && ((address + size) <= end)) { in hv_emulate_mmio()
816 uint64_t start, uint64_t end) in find_match_mmio_node() argument
824 if ((mmio_node->range_start == start) && (mmio_node->range_end == end)) { in find_match_mmio_node()
832 __func__, vm->vm_id, start, end); in find_match_mmio_node()
876 uint64_t end, void *handler_private_data, bool hold_lock) in register_mmio_emulation_handler() argument
881 if ((read_write != NULL) && (end > start)) { in register_mmio_emulation_handler()
890 mmio_node->range_end = end; in register_mmio_emulation_handler()
907 uint64_t start, uint64_t end) in unregister_mmio_emulation_handler() argument
912 mmio_node = find_match_mmio_node(vm, start, end); in unregister_mmio_emulation_handler()