Lines Matching defs:pte

35 static inline unsigned long pte_huge_size(pte_t pte)  in pte_huge_size()
153 static inline pte_t pte_mkwrite_novma(pte_t pte) in pte_mkwrite_novma()
162 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
167 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
173 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
180 static inline pte_t pte_mkexec(pte_t pte) in pte_mkexec()
187 static inline int pte_write(pte_t pte) in pte_write()
192 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
193 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special()
194 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none()
195 static inline bool pte_hashpte(pte_t pte) { return false; } in pte_hashpte()
196 static inline bool pte_ci(pte_t pte) { return pte_val(pte) & _PAGE_NO_CACHE; } in pte_ci()
197 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec()
199 static inline int pte_present(pte_t pte) in pte_present()
204 static inline bool pte_hw_valid(pte_t pte) in pte_hw_valid()
209 static inline int pte_young(pte_t pte) in pte_young()
220 static inline bool pte_read(pte_t pte) in pte_read()
231 static inline bool pte_access_permitted(pte_t pte, bool write) in pte_access_permitted()
257 static inline pte_t pte_exprotect(pte_t pte) in pte_exprotect()
262 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
267 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
272 static inline pte_t pte_mkspecial(pte_t pte) in pte_mkspecial()
278 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
284 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
289 static inline int pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
294 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
299 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
310 pte_t *ptep, pte_t pte, int percpu) in __set_pte_at()