Lines Matching defs:pte

137 # define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
139 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
142 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
143 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
145 static inline void set_pte(pte_t *ptep, pte_t pte)
188 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
189 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
190 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
315 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
316 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
317 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
319 static inline pte_t pte_wrprotect(pte_t pte)
328 static inline pte_t pte_mkclean(pte_t pte)
337 static inline pte_t pte_mkold(pte_t pte)
346 static inline pte_t pte_mkwrite(pte_t pte)
357 static inline pte_t pte_mkdirty(pte_t pte)
368 static inline pte_t pte_mkyoung(pte_t pte)
379 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
380 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
381 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
383 static inline pte_t pte_wrprotect(pte_t pte)
389 static inline pte_t pte_mkclean(pte_t pte)
395 static inline pte_t pte_mkold(pte_t pte)
401 static inline pte_t pte_mkwrite(pte_t pte)
409 static inline pte_t pte_mkdirty(pte_t pte)
417 static inline pte_t pte_mkyoung(pte_t pte)
426 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
428 static inline pte_t pte_mkhuge(pte_t pte)
435 static inline int pte_special(pte_t pte) { return 0; }
436 static inline pte_t pte_mkspecial(pte_t pte) { return pte; }
474 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
483 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
492 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
506 pte_t pte = *ptep; local
513 pte_t pte = *(pte_t *)pmdp; local