HomeSort by: relevance | last modified time | path
    Searched defs:newpte (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/vax/vax/
pmap.c 1060 int newpte, oldpte; local in function:pmap_enter
1074 newpte = (prot & VM_PROT_WRITE ? PG_KW : PG_KR);
1082 newpte = (prot & VM_PROT_WRITE ? PG_RW : PG_RO);
1090 newpte = (prot & VM_PROT_WRITE ? PG_RW : PG_RO);
1095 newpte |= vax_btop(p);
1121 mapin8(pteptr, newpte);
1127 newpte |= PG_W;
1133 if (newpte == (oldpte | PG_W)) {
1141 if (newpte == oldpte) {
1148 if ((newpte & PG_FRAME) == (oldpte & PG_FRAME))
    [all...]
pmap.c 1060 int newpte, oldpte; local in function:pmap_enter
1074 newpte = (prot & VM_PROT_WRITE ? PG_KW : PG_KR);
1082 newpte = (prot & VM_PROT_WRITE ? PG_RW : PG_RO);
1090 newpte = (prot & VM_PROT_WRITE ? PG_RW : PG_RO);
1095 newpte |= vax_btop(p);
1121 mapin8(pteptr, newpte);
1127 newpte |= PG_W;
1133 if (newpte == (oldpte | PG_W)) {
1141 if (newpte == oldpte) {
1148 if ((newpte & PG_FRAME) == (oldpte & PG_FRAME))
    [all...]

Completed in 23 milliseconds