Home
last modified time | relevance | path

Searched refs:VM_WIMG_MASK (Results 1 – 11 of 11) sorted by relevance

/xnu-8019.80.24/osfmk/vm/
H A Dmemory_types.h41 #define VM_WIMG_MASK 0xFF macro
H A Ddevice_vm.c285 vm_object->wimg_bits = device_object->flags & VM_WIMG_MASK; in device_pager_init()
H A Dvm_fault.c1728 VM_WIMG_MASK) != in vm_fault_page()
5234 if ((m_object->wimg_bits & VM_WIMG_MASK) != VM_WIMG_USE_DEFAULT) { in vm_fault_internal()
6123 (VM_WIMG_MASK & (int)object->wimg_bits) | superpage, 0); in vm_fault_internal()
6138 (VM_WIMG_MASK & (int)object->wimg_bits) | superpage, 0); in vm_fault_internal()
7282 if ((object->wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in kdp_lightweight_fault()
H A Dvm_resident.c1906 cache_attr = object->wimg_bits & VM_WIMG_MASK; in vm_page_insert_internal()
H A Dvm_pageout.c8713 cache_attr = object->wimg_bits & VM_WIMG_MASK; in vm_object_set_pmap_cache_attr()
/xnu-8019.80.24/osfmk/device/
H A Ddevice_port.h83 _Static_assert(((DEVICE_PAGER_CONTIGUOUS | DEVICE_PAGER_NOPHYSCACHE) & VM_WIMG_MASK) == 0,
/xnu-8019.80.24/osfmk/arm64/
H A Dloose_ends.c98 if ((wimg_bits_src & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bcopy_phys_internal()
115 if ((wimg_bits_dst & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bcopy_phys_internal()
217 if ((wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in bzero_phys()
240 switch (wimg_bits & VM_WIMG_MASK) { in bzero_phys()
/xnu-8019.80.24/osfmk/arm/
H A Dloose_ends.c79 ((wimg_bits_src & VM_WIMG_MASK) == VM_WIMG_DEFAULT) && in bcopy_phys()
80 ((wimg_bits_dst & VM_WIMG_MASK) == VM_WIMG_DEFAULT)) { in bcopy_phys()
121 if (__probable((wimg_bits & VM_WIMG_MASK) == VM_WIMG_DEFAULT)) { in bzero_phys()
H A Dpmap.c5729 switch (wimg & (VM_WIMG_MASK)) {
6191 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6192 wimg_bits = (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
6337 if ((flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT))) {
6338 wimg_bits = (wimg_bits & (~VM_WIMG_MASK)) | (flags & (VM_WIMG_MASK | VM_WIMG_USE_DEFAULT));
10192 pmap_sync_wimg(pn, prev_cacheattr & VM_WIMG_MASK, new_cacheattr & VM_WIMG_MASK);
10199 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
10215 unsigned int cacheattr = pmap_cache_attributes(pn) & VM_WIMG_MASK;
10249 if (platform_cache_batch_wimg(cacheattr & (VM_WIMG_MASK), page_cnt << PAGE_SHIFT) == FALSE) {
10278 …_attr_template = (pp_attr_current & ~PP_ATTR_WIMG_MASK) | PP_ATTR_WIMG(cacheattr & (VM_WIMG_MASK));
[all …]
/xnu-8019.80.24/osfmk/kern/
H A Dkern_stackshot.c3117 if ((cur_wimg_bits & VM_WIMG_MASK) != VM_WIMG_DEFAULT) { in kdp_find_phys()
/xnu-8019.80.24/iokit/Kernel/
H A DIOMemoryDescriptor.cpp378 pagerFlags &= VM_WIMG_MASK; in cacheModeForPagerFlags()