Lines Matching refs:pte
247 #define pte_unmap(pte) do { } while (0) argument
248 #define pte_unmap_nested(pte) do { } while (0) argument
279 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument
296 #define pte_read(pte) (pte_val(pte) & _PAGE_READ) argument
297 #define pte_write(pte) (pte_val(pte) & _PAGE_WRITE) argument
298 #define pte_dirty(pte) (pte_val(pte) & _PAGE_DIRTY) argument
299 #define pte_young(pte) (pte_val(pte) & _PAGE_ACCESSED) argument
300 #define pte_special(pte) (pte_val(pte) & _PAGE_SPECIAL) argument
303 static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; }
319 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument
321 return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)); in pte_modify()
379 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument