HomeSort by: relevance | last modified time | path
    Searched refs:pvh_listx (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/arch/hb68k/pg68k/
pmap_pgmmu.h 110 uintptr_t pvh_listx; /* pv_entry list + attrs */ member in struct:vm_page_md
120 (pg)->mdpage.pvh_listx = 0; \
124 ((struct pv_entry *)((pg)->mdpage.pvh_listx & (uintptr_t)PVH_PV_MASK))
127 ((struct pv_entry **)&(pg)->mdpage.pvh_listx)
144 (((pg)->mdpage.pvh_listx & PVH_MR_MASK) << PVH_MR_SHIFT)
148 (pg)->mdpage.pvh_listx |= \
154 (pg)->mdpage.pvh_listx = \
155 ((pg)->mdpage.pvh_listx & ~PVH_MR_MASK) | \
  /src/sys/arch/m68k/include/
pmap_68k.h 351 uintptr_t pvh_listx; /* pv_entry list + attrs */ member in struct:vm_page_md
362 (pg)->mdpage.pvh_listx = 0; \
366 ((struct pv_entry *)((pg)->mdpage.pvh_listx & (uintptr_t)PVH_PV_MASK))
369 ((struct pv_entry **)&(pg)->mdpage.pvh_listx)
386 (((pg)->mdpage.pvh_listx & PVH_UM_MASK) << PVH_UM_SHIFT)
390 (pg)->mdpage.pvh_listx |= \
396 (pg)->mdpage.pvh_listx = \
397 ((pg)->mdpage.pvh_listx & ~PVH_UM_MASK) | \
403 (pg)->mdpage.pvh_listx |= PVH_CI; \
408 (pg)->mdpage.pvh_listx &= ~PVH_CI;
    [all...]
  /src/sys/arch/alpha/include/
pmap.h 185 /* attrs in pvh_listx */
216 (((pg)->mdpage.pvh_listx & PGA_REFERENCED) != 0)
218 (((pg)->mdpage.pvh_listx & PGA_MODIFIED) != 0)
361 uintptr_t pvh_listx; /* pv_entry list + attrs */ member in struct:vm_page_md
386 ((struct pv_entry *)((pg)->mdpage.pvh_listx & ~3UL))
390 (pg)->mdpage.pvh_listx = 0UL; \
  /src/sys/arch/alpha/alpha/
pmap.c 2369 attrs = (md->pvh_listx |= attrs);
2830 if (md->pvh_listx & PGA_MODIFIED) {
2833 md->pvh_listx &= ~PGA_MODIFIED;
2869 if (md->pvh_listx & PGA_REFERENCED) {
2872 md->pvh_listx &= ~PGA_REFERENCED;
3184 md->pvh_listx |= (PGA_REFERENCED|PGA_MODIFIED);
3187 md->pvh_listx |= PGA_REFERENCED;
3224 printf("pa 0x%lx (attrs = 0x%lx):\n", pa, md->pvh_listx & PGA_ATTRS);
3325 uintptr_t const attrs = md->pvh_listx & PGA_ATTRS;
3326 newpv->pv_next = (struct pv_entry *)(md->pvh_listx & ~PGA_ATTRS)
    [all...]

Completed in 22 milliseconds