Searched refs:unmap_base (Results 1 - 2 of 2) sorted by relevance

/fuchsia/zircon/kernel/vm/
H A Dvm_address_region.cpp706 const vaddr_t unmap_base = fbl::max(curr->base(), base); local
708 const size_t unmap_size = unmap_end - unmap_base;
710 if (unmap_base == curr->base() && unmap_size == curr->size()) {
724 zx_status_t status = curr->as_vm_mapping()->UnmapLocked(unmap_base, unmap_size);
731 vaddr_t unmap_base = 0; local
734 &unmap_base, &unmap_size);
745 } else if (unmap_base == curr->base() && unmap_size == curr->size()) {
H A Dvm_mapping.cpp370 vaddr_t unmap_base; local
371 bool overflowed = add_overflow(base_, offset_new - object_offset_, &unmap_base);
375 ASSERT(unmap_base >= base_);
376 ASSERT((unmap_base + len_new - 1) <= (base_ + size_ - 1));
379 unmap_base, len_new, aspace_.get());
381 zx_status_t status = aspace_->arch_aspace().Unmap(unmap_base,

Completed in 31 milliseconds