Lines Matching refs:pte
232 #define pte_unmap(pte) do { } while (0) argument
233 #define pte_unmap_nested(pte) do { } while (0) argument
265 pte_t pte; \
266 pte_val(pte) = __pa(page_address(page)) + pgprot_val(pgprot); \
267 pte; \
270 #define pte_pfn(pte) (pte_val(pte) >> PAGE_SHIFT) argument
286 #define pte_read(pte) (pte_val(pte) & _PAGE_READ) argument
287 #define pte_write(pte) (pte_val(pte) & _PAGE_WRITE) argument
288 #define pte_dirty(pte) (pte_val(pte) & _PAGE_MODIFIED) argument
289 #define pte_young(pte) (pte_val(pte) & _PAGE_ACCESSED) argument
290 #define pte_special(pte) (0) argument
293 static inline pte_t pte_##fn(pte_t pte) { pte_val(pte) op; return pte; }
304 static inline pte_t pte_mkspecial(pte_t pte) { return pte; } in pte_mkspecial() argument
306 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify() argument
308 return __pte((pte_val(pte) & _PAGE_CHG_MASK) | pgprot_val(newprot)); in pte_modify()
367 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument