Lines Matching defs:pte

131 # define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
133 # define pte_none(pte) (!(((pte).pte_low | (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)
182 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
183 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
184 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
269 static inline int pte_special(pte_t pte)
274 static inline pte_t pte_mkspecial(pte_t pte)
280 static inline int pte_special(pte_t pte)
285 static inline pte_t pte_mkspecial(pte_t pte)
298 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
299 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
300 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
302 static inline pte_t pte_wrprotect(pte_t pte)
311 static inline pte_t pte_mkclean(pte_t pte)
320 static inline pte_t pte_mkold(pte_t pte)
329 static inline pte_t pte_mkwrite(pte_t pte)
340 static inline pte_t pte_mkdirty(pte_t pte)
351 static inline pte_t pte_mkyoung(pte_t pte)
362 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
363 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
364 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
366 static inline pte_t pte_wrprotect(pte_t pte)
372 static inline pte_t pte_mkclean(pte_t pte)
378 static inline pte_t pte_mkold(pte_t pte)
384 static inline pte_t pte_mkwrite(pte_t pte)
392 static inline pte_t pte_mkdirty(pte_t pte)
400 static inline pte_t pte_mkyoung(pte_t pte)
411 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
413 static inline pte_t pte_mkhuge(pte_t pte)
440 static inline bool pte_soft_dirty(pte_t pte)
446 static inline pte_t pte_mksoft_dirty(pte_t pte)
453 static inline pte_t pte_clear_soft_dirty(pte_t pte)
525 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
534 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
543 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
560 pte_t pte = *ptep; local
570 pte_t pte = *(pte_t *)pmdp; local