Home
last modified time | relevance | path

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

/xnu-8796.101.5/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.c2184 assert(VM_MAP_PAGE_ALIGNED(new_entry->vme_start, VM_MAP_PAGE_MASK(map))); in vm_map_find_space()
2185 assert(VM_MAP_PAGE_ALIGNED(new_entry->vme_end, VM_MAP_PAGE_MASK(map))); in vm_map_find_space()
2317 assert(VM_MAP_PAGE_ALIGNED(size, VM_MAP_PAGE_MASK(map))); in vm_map_random_address_for_size()
2604 assertf(VM_MAP_PAGE_ALIGNED(*address, FOURK_PAGE_MASK), "0x%llx", (uint64_t)*address); in vm_map_enter()
2605 assertf(VM_MAP_PAGE_ALIGNED(size, FOURK_PAGE_MASK), "0x%llx", (uint64_t)size); in vm_map_enter()
2612 !VM_MAP_PAGE_ALIGNED(size, VM_MAP_PAGE_MASK(map))) { in vm_map_enter()
2625 !VM_MAP_PAGE_ALIGNED(*address, VM_MAP_PAGE_MASK(map))) { in vm_map_enter()
2667 assert(VM_MAP_PAGE_ALIGNED(*address, in vm_map_enter()
2975 assert(VM_MAP_PAGE_ALIGNED(end, in vm_map_enter()
3587 assert(VM_MAP_PAGE_ALIGNED(*address, FOURK_PAGE_MASK)); in vm_map_enter_fourk()
[all …]
H A Dvm_map.h1527 #define VM_MAP_PAGE_ALIGNED(x, pgmask) (((x) & (pgmask)) == 0) macro
H A Dvm_fault.c6168 VM_MAP_PAGE_ALIGNED(entry->vme_start, (object->vo_size - 1))) { in vm_fault_internal()