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