Home | History | Annotate | Download | only in lib

Lines Matching refs:hva

421  *   hva - Starting host virtual address
431 * Returns 0 if the bytes starting at hva for a length of len
433 * a value < 0, if bytes at hva are less than those at gva.
436 * Compares the bytes starting at the host virtual address hva, for
440 int kvm_memcmp_hva_gva(void *hva, struct kvm_vm *vm, vm_vaddr_t gva, size_t len)
449 uintptr_t ptr1 = (uintptr_t)hva + offset;
981 * hva - Host virtual address
989 * by hva, within the VM given by vm. When found, the equivalent
991 * region containing hva exists.
993 vm_paddr_t addr_hva2gpa(struct kvm_vm *vm, void *hva)
998 if ((hva >= region->host_mem)
999 && (hva <= (region->host_mem
1003 + (hva - (uintptr_t) region->host_mem));
1007 "hva: %p", hva);