Lines Matching refs:ptep
1479 x86pte_t *ptep; in htable_attach() local
1549 ptep = kbm_remap_window(pfn_to_pa(pfn), 0); in htable_attach()
1552 pte = ptep[i]; in htable_attach()
1554 pte = ((x86pte32_t *)ptep)[i]; in htable_attach()
1560 ptep = kbm_remap_window(pfn_to_pa(pfn), 0); in htable_attach()
2056 x86pte_t *ptep; in x86pte_get() local
2062 ptep = x86pte_access_pagetable(ht, entry); in x86pte_get()
2063 pte = GET_PTE(ptep); in x86pte_get()
2083 x86pte_t *ptep; in x86pte_set() local
2093 ptep = x86pte_access_pagetable(ht, entry); in x86pte_set()
2095 ptep = ptr; in x86pte_set()
2102 prev = GET_PTE(ptep); in x86pte_set()
2132 old = CAS_PTE(ptep, prev, n); in x86pte_set()
2166 x86pte_t *ptep; in x86pte_cas() local
2202 ptep = x86pte_access_pagetable(ht, entry); in x86pte_cas()
2204 pte = CAS_PTE(ptep, old, new); in x86pte_cas()
2226 x86pte_t *ptep; in x86pte_inval() local
2234 ptep = pte_ptr; in x86pte_inval()
2236 ptep = x86pte_access_pagetable(ht, entry); in x86pte_inval()
2248 oldpte = GET_PTE(ptep); in x86pte_inval()
2266 oldpte = GET_PTE(ptep); in x86pte_inval()
2270 found = CAS_PTE(ptep, oldpte, 0); in x86pte_inval()
2292 x86pte_t *ptep; in x86pte_update() local
2299 ptep = x86pte_access_pagetable(ht, entry); in x86pte_update()
2301 found = CAS_PTE(ptep, expect, new); in x86pte_update()
2316 (GET_PTE(ptep) & PT_MOD) != 0) { in x86pte_update()
2318 found = GET_PTE(ptep); in x86pte_update()
2321 CAS_PTE(ptep, found, found | PT_WRITABLE); in x86pte_update()