Home
last modified time | relevance | path

Searched refs:opte (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/kern/
H A Dimgact_shell.c105 const char *ihp, *interpb, *interpe, *maxp, *optb, *opte, *fname; in exec_shell_imgact() local
168 opte = ihp; in exec_shell_imgact()
169 if (opte == maxp) in exec_shell_imgact()
172 opte = ihp; in exec_shell_imgact()
193 if (opte > optb) /* options (if any) */ in exec_shell_imgact()
194 offset += opte - optb + 1; in exec_shell_imgact()
224 if (opte > optb) { in exec_shell_imgact()
225 length = opte - optb; in exec_shell_imgact()
/f-stack/freebsd/mips/beri/
H A Dberi_iommu.c133 pt_entry_t opte, npte; in beri_iommu_enter() local
145 opte = *pte; in beri_iommu_enter()
146 npte = opte & ~PTE_C_MASK; in beri_iommu_enter()
154 if (pte_test(&opte, PTE_V) && opte != npte) in beri_iommu_enter()
/f-stack/freebsd/i386/i386/
H A Dpmap.c5408 u_int opte, npte; in pmap_pte_attr() local
5415 opte = *(u_int *)pte; in pmap_pte_attr()
5416 npte = opte & ~PG_PTE_CACHE; in pmap_pte_attr()
5418 } while (npte != opte && !atomic_cmpset_int((u_int *)pte, opte, npte)); in pmap_pte_attr()
6004 pt_entry_t opte, *ptep; in __CONCAT() local
6014 opte = *ptep; in __CONCAT()
6025 if ((opte & (PG_V | PG_A)) == (PG_V | PG_A)) in __CONCAT()
6028 if ((opte & (PG_V | PG_A)) == (PG_V | PG_A)) in __CONCAT()
/f-stack/freebsd/mips/mips/
H A Dpmap.c825 pt_entry_t opte, npte; in pmap_kenter_attr() local
832 opte = *pte; in pmap_kenter_attr()
835 if (pte_test(&opte, PTE_V) && opte != npte) in pmap_kenter_attr()
/f-stack/freebsd/amd64/amd64/
H A Dpmap.c8903 u_long opte, npte; in pmap_pte_props() local
8905 opte = *(u_long *)pte; in pmap_pte_props()
8907 npte = opte & ~mask; in pmap_pte_props()
8909 } while (npte != opte && !atomic_fcmpset_long((u_long *)pte, &opte, in pmap_pte_props()