Home
last modified time | relevance | path

Searched refs:ARM_PTE_WRITEABLE (Results 1 – 3 of 3) sorted by relevance

/xnu-11417.121.6/osfmk/arm64/
H A Dproc_reg.h1803 #define ARM_PTE_WRITEABLE 0x0800000000000000ULL /* value for software writeable bit */ macro
1804 #define ARM_PTE_WRITABLE ARM_PTE_WRITEABLE
/xnu-11417.121.6/osfmk/arm/pmap/
H A Dpmap.c568 (((pte) & ARM_PTE_WRITEABLE) == ARM_PTE_WRITEABLE)
573 (pte) |= ARM_PTE_WRITEABLE; \
575 (pte) &= ~ARM_PTE_WRITEABLE; \
7905 _Static_assert(ARM_PTE_COMPRESSED != ARM_PTE_WRITEABLE, "compressed bit aliases writeable");
8099 if ((spte & (~ARM_PTE_WRITEABLE)) != (tmplate & (~ARM_PTE_WRITEABLE)) &&
8384 if ((spte & (~ARM_PTE_WRITEABLE)) != (tmplate & (~ARM_PTE_WRITEABLE))) {
/xnu-11417.121.6/osfmk/arm64/sptm/pmap/
H A Dpmap.c639 (((pte) & ARM_PTE_WRITEABLE) == ARM_PTE_WRITEABLE)
644 (pte) |= ARM_PTE_WRITEABLE; \
646 (pte) &= ~ARM_PTE_WRITEABLE; \
4944 spte = (spte & ~(ARM_PTE_APMASK | ARM_PTE_XMASK | ARM_PTE_WRITEABLE)) |
4945 (tmplate & (ARM_PTE_APMASK | ARM_PTE_XMASK | ARM_PTE_WRITEABLE));