Lines Matching defs:pte
269 { pte_t pte; pte_val(pte) = ((type & 0x7f) << 16) | (offset << 24); return pte; } in mk_swap_pte() local
274 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) }) argument
279 static inline int pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
284 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
290 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
298 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
299 #define pte_present(pte) (pte_val(pte) & (_PAGE_PRESENT | _PAGE_PROTNONE)) argument
300 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
363 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()
364 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; } in pte_young()
365 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; } in pte_dirty()
367 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
373 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
379 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
385 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
393 static inline pte_t pte_mkwrite(pte_t pte) in pte_mkwrite()
401 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
407 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; } in pte_huge()
409 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
416 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special()
417 static inline pte_t pte_mkspecial(pte_t pte) { pte_val(pte) |= _PAGE_SPECIAL; return pte; } in pte_mkspecial()
439 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
584 static inline long pte_protnone(pte_t pte) in pte_protnone()