Lines Matching full:xp
91 static inline pte_t native_ptep_get_and_clear(pte_t *xp) in native_ptep_get_and_clear() argument
94 return native_make_pte(xchg(&xp->pte, 0)); in native_ptep_get_and_clear()
98 pte_t ret = *xp; in native_ptep_get_and_clear()
99 native_pte_clear(NULL, 0, xp); in native_ptep_get_and_clear()
104 static inline pmd_t native_pmdp_get_and_clear(pmd_t *xp) in native_pmdp_get_and_clear() argument
107 return native_make_pmd(xchg(&xp->pmd, 0)); in native_pmdp_get_and_clear()
111 pmd_t ret = *xp; in native_pmdp_get_and_clear()
112 native_pmd_clear(xp); in native_pmdp_get_and_clear()
127 static inline pud_t native_pudp_get_and_clear(pud_t *xp) in native_pudp_get_and_clear() argument
130 return native_make_pud(xchg(&xp->pud, 0)); in native_pudp_get_and_clear()
135 pud_t ret = *xp; in native_pudp_get_and_clear()
137 native_pud_clear(xp); in native_pudp_get_and_clear()