Lines Matching defs:pte

135 #define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
136 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
137 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
139 static inline void set_pte(pte_t *ptep, pte_t pte) in set_pte()
170 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
171 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
172 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
285 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; } in pte_write()
286 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; } in pte_dirty()
287 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; } in pte_young()
289 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
296 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
303 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
310 static inline pte_t pte_mkwrite(pte_t pte) in pte_mkwrite()
318 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
326 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
334 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()
335 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; } in pte_dirty()
336 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
338 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
344 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
350 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
356 static inline pte_t pte_mkwrite(pte_t pte) in pte_mkwrite()
364 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
372 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
386 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; } in pte_huge()
388 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
395 static inline int pte_special(pte_t pte) { return 0; } in pte_special()
396 static inline pte_t pte_mkspecial(pte_t pte) { return pte; } in pte_mkspecial()
434 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
443 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
456 pte_t pte = *ptep; in update_mmu_cache() local
463 pte_t pte = *(pte_t *)pmdp; in update_mmu_cache_pmd() local