Symbol: PG_PMAP_REF
sys/arch/alpha/alpha/pmap.c
1697
PG_PMAP_REF | PG_PMAP_MOD);
sys/arch/alpha/alpha/pmap.c
1699
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/alpha/alpha/pmap.c
1705
if ((attrs & PG_PMAP_REF) == 0)
sys/arch/alpha/alpha/pmap.c
2171
if (pg->pg_flags & PG_PMAP_REF) {
sys/arch/alpha/alpha/pmap.c
2174
atomic_clearbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/alpha/alpha/pmap.c
2192
rv = ((pg->pg_flags & PG_PMAP_REF) != 0);
sys/arch/alpha/alpha/pmap.c
2568
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF | PG_PMAP_MOD);
sys/arch/alpha/alpha/pmap.c
2571
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/alpha/alpha/pmap.c
2598
pa, pg->pg_flags & (PG_PMAP_REF | PG_PMAP_MOD));
sys/arch/amd64/amd64/pmap.c
402
return (((pte & PG_U) ? PG_PMAP_REF : 0) |
sys/arch/arm64/arm64/pmap.c
1899
atomic_setbits_int(&pg->pg_flags, PG_PMAP_MOD|PG_PMAP_REF);
sys/arch/arm64/arm64/pmap.c
1914
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/arm64/arm64/pmap.c
1927
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/arm64/arm64/pmap.c
2015
return ((pg->pg_flags & PG_PMAP_REF) != 0);
sys/arch/arm64/arm64/pmap.c
2051
atomic_clearbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/arm64/arm64/pmap.c
654
((flags & PROT_MASK) || (pg->pg_flags & PG_PMAP_REF))) {
sys/arch/arm64/arm64/pmap.c
655
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/hppa/hppa/pmap.c
1098
if (attrs != (PG_PMAP_REF | PG_PMAP_MOD))
sys/arch/hppa/hppa/pmap.c
1100
attrs ^(PG_PMAP_REF | PG_PMAP_MOD));
sys/arch/hppa/hppa/pmap.c
111
attrs |= PG_PMAP_REF;
sys/arch/hppa/hppa/pmap.c
927
if (attrs != (PG_PMAP_REF | PG_PMAP_MOD))
sys/arch/hppa/hppa/pmap.c
929
attrs ^(PG_PMAP_REF | PG_PMAP_MOD));
sys/arch/hppa/include/pmap.h
112
#define pmap_is_referenced(pg) pmap_testbit(pg, PG_PMAP_REF)
sys/arch/i386/i386/pmap.c
486
return (((pte & PG_U) ? PG_PMAP_REF : 0) |
sys/arch/i386/i386/pmapae.c
486
return (((pte & PG_U) ? PG_PMAP_REF : 0) |
sys/arch/powerpc/include/pmap.h
117
#define pmap_clear_reference(pg) pmap_clear_attrs((pg), PG_PMAP_REF)
sys/arch/powerpc/include/pmap.h
119
#define pmap_is_referenced(pg) pmap_test_attrs((pg), PG_PMAP_REF)
sys/arch/powerpc/powerpc/pmap.c
510
return (((pte & PTE_REF_32) ? PG_PMAP_REF : 0) |
sys/arch/powerpc/powerpc/pmap.c
517
return (((flags & PG_PMAP_REF) ? PTE_REF_32 : 0) |
sys/arch/powerpc64/powerpc64/pmap.c
1127
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/powerpc64/powerpc64/pmap.c
1375
return ((pg->pg_flags & PG_PMAP_REF) != 0);
sys/arch/powerpc64/powerpc64/pmap.c
1390
atomic_clearbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/riscv64/riscv64/pmap.c
1730
atomic_setbits_int(&pg->pg_flags, PG_PMAP_MOD|PG_PMAP_REF);
sys/arch/riscv64/riscv64/pmap.c
1745
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/riscv64/riscv64/pmap.c
1758
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/riscv64/riscv64/pmap.c
1832
return ((pg->pg_flags & PG_PMAP_REF) != 0);
sys/arch/riscv64/riscv64/pmap.c
1868
atomic_clearbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/riscv64/riscv64/pmap.c
585
((flags & PROT_MASK) || (pg->pg_flags & PG_PMAP_REF))) {
sys/arch/riscv64/riscv64/pmap.c
586
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/sh/sh/pmap.c
1031
if (flags & PG_PMAP_REF)
sys/arch/sh/sh/pmap.c
312
PG_PMAP_MOD | PG_PMAP_REF);
sys/arch/sh/sh/pmap.c
315
atomic_setbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/sh/sh/pmap.c
803
return ((pg->pg_flags & PG_PMAP_REF) ? TRUE : FALSE);
sys/arch/sh/sh/pmap.c
816
if ((pg->pg_flags & PG_PMAP_REF) == 0)
sys/arch/sh/sh/pmap.c
819
atomic_clearbits_int(&pg->pg_flags, PG_PMAP_REF);
sys/arch/sh/sh/trap.c
350
track = PG_PMAP_REF;
sys/arch/sh/sh/trap.c
354
track = PG_PMAP_REF;
sys/arch/sh/sh/trap.c
358
track = PG_PMAP_REF | PG_PMAP_MOD;