Searched refs:opte (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/sys/kern/
H A Dimgact_shell.c103 const char *ihp, *interpb, *interpe, *maxp, *optb, *opte, *fname; local
166 opte = ihp;
167 if (opte == maxp)
170 opte = ihp;
191 if (opte > optb) /* options (if any) */
192 offset += opte - optb + 1;
229 if (opte > optb) {
230 length = opte - optb;
/freebsd-11-stable/sys/i386/i386/
H A Dvm_machdep.c578 pt_entry_t opte, *ptep; local
588 opte = *ptep;
599 if ((opte & (PG_V | PG_A)) == (PG_V | PG_A))
604 if ((opte & (PG_V | PG_A)) == (PG_V | PG_A))
H A Dpmap.c5197 u_int opte, npte; local
5204 opte = *(u_int *)pte;
5205 npte = opte & ~PG_PTE_CACHE;
5207 } while (npte != opte && !atomic_cmpset_int((u_int *)pte, opte, npte));
/freebsd-11-stable/sys/arm/arm/
H A Dpmap-v4.c1330 pt_entry_t *ptep, npte, opte; local
1380 npte = opte = *ptep;
1404 if (opte & L2_S_PROT_W) {
1432 * of the PTE is the same for opte and
1467 if (npte != opte) {
2651 pt_entry_t opte; local
2664 opte = *pte;
2665 PDEBUG(1, printf("pmap_kenter: pte = %08x, opte = %08x, npte = %08x\n",
2666 (uint32_t) pte, opte, *pte));
2667 if (l2pte_valid(opte)) {
2780 pt_entry_t *pte, opte; local
3219 pt_entry_t *ptep, npte, opte; local
[all...]
/freebsd-11-stable/sys/mips/mips/
H A Dpmap.c825 pt_entry_t opte, npte; local
832 opte = *pte;
835 if (pte_test(&opte, PTE_V) && opte != npte)
/freebsd-11-stable/sys/amd64/amd64/
H A Dpmap.c6899 u_int opte, npte;
6906 opte = *(u_int *)pte;
6907 npte = opte & ~mask;
6909 } while (npte != opte && !atomic_cmpset_int((u_int *)pte, opte, npte));
6898 u_int opte, npte; local

Completed in 127 milliseconds