Home
last modified time | relevance | path

Searched refs:VM_MAP_PAGE_ALIGNED (Results 1 – 4 of 4) sorted by relevance

/xnu-8796.141.3/osfmk/vm/
H A Dvm_map_store_ll.c71 assert(VM_MAP_PAGE_ALIGNED(entry->vme_start, in vm_map_store_entry_link_ll()
73 assert(VM_MAP_PAGE_ALIGNED(entry->vme_end, in vm_map_store_entry_link_ll()
H A Dvm_map.c2188 assert(VM_MAP_PAGE_ALIGNED(new_entry->vme_start, VM_MAP_PAGE_MASK(map))); in vm_map_find_space()
2189 assert(VM_MAP_PAGE_ALIGNED(new_entry->vme_end, VM_MAP_PAGE_MASK(map))); in vm_map_find_space()
2321 assert(VM_MAP_PAGE_ALIGNED(size, VM_MAP_PAGE_MASK(map))); in vm_map_random_address_for_size()
2608 assertf(VM_MAP_PAGE_ALIGNED(*address, FOURK_PAGE_MASK), "0x%llx", (uint64_t)*address); in vm_map_enter()
2609 assertf(VM_MAP_PAGE_ALIGNED(size, FOURK_PAGE_MASK), "0x%llx", (uint64_t)size); in vm_map_enter()
2616 !VM_MAP_PAGE_ALIGNED(size, VM_MAP_PAGE_MASK(map))) { in vm_map_enter()
2629 !VM_MAP_PAGE_ALIGNED(*address, VM_MAP_PAGE_MASK(map))) { in vm_map_enter()
2671 assert(VM_MAP_PAGE_ALIGNED(*address, in vm_map_enter()
2979 assert(VM_MAP_PAGE_ALIGNED(end, in vm_map_enter()
3591 assert(VM_MAP_PAGE_ALIGNED(*address, FOURK_PAGE_MASK)); in vm_map_enter_fourk()
[all …]
H A Dvm_map.h1517 #define VM_MAP_PAGE_ALIGNED(x, pgmask) (((x) & (pgmask)) == 0) macro
H A Dvm_fault.c6167 VM_MAP_PAGE_ALIGNED(entry->vme_start, (object->vo_size - 1))) { in vm_fault_internal()