Home | History | Annotate | Download | only in asm-arm

Lines Matching refs:PTE_BIT_FUNC

256 #define PTE_BIT_FUNC(fn,op) \
259 /*PTE_BIT_FUNC(rdprotect, &= ~L_PTE_USER);*/
260 /*PTE_BIT_FUNC(mkread, |= L_PTE_USER);*/
261 PTE_BIT_FUNC(wrprotect, &= ~L_PTE_WRITE);
262 PTE_BIT_FUNC(mkwrite, |= L_PTE_WRITE);
263 PTE_BIT_FUNC(exprotect, &= ~L_PTE_EXEC);
264 PTE_BIT_FUNC(mkexec, |= L_PTE_EXEC);
265 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY);
266 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
267 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG);
268 PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);