Symbol: PTE_A
sys/arch/riscv/include/pte.h
110
#define PTE_HARDWIRED (PTE_A | PTE_D)
sys/arch/riscv/include/pte.h
145
return (pte & PTE_A) != 0;
sys/arch/riscv/include/pte.h
194
return pte & ~PTE_A;
sys/arch/riscv/include/pte.h
267
pte |= PTE_A | PTE_D;
sys/arch/riscv/include/pte.h
273
pte |= PTE_A;
sys/arch/riscv/riscv/riscv_machdep.c
959
(pte & PTE_A) ? 'A' : '.',
sys/arch/riscv/riscv/trap.c
363
if ((npte & (PTE_R | PTE_A)) == PTE_R) {
sys/arch/riscv/riscv/trap.c
364
npte |= PTE_A;
sys/arch/riscv/riscv/trap.c
370
npte |= PTE_A | PTE_D;
sys/arch/riscv/riscv/trap.c
376
npte |= PTE_A | PTE_D;
sys/arch/riscv/riscv/trap.c
381
if ((npte & (PTE_X | PTE_A)) == PTE_X) {
sys/arch/riscv/riscv/trap.c
382
npte |= PTE_A;
sys/arch/x86/x86/pmap.c
1052
if ((opte & (PTE_P | PTE_A)) == (PTE_P | PTE_A)) {
sys/arch/x86/x86/pmap.c
1120
if ((opte & (PTE_P | PTE_A)) == (PTE_P | PTE_A) && !localonly) {
sys/arch/x86/x86/pmap.c
1603
L4_BASE[L4e_idx+i] = pa | pteflags | PTE_A;
sys/arch/x86/x86/pmap.c
1617
L3_BASE[L3e_idx+i] = pa | pteflags | PTE_A;
sys/arch/x86/x86/pmap.c
1632
L2_BASE[L2e_idx+i] = pa | pteflags | PTE_A;
sys/arch/x86/x86/pmap.c
1750
L4_BASE[L4e_idx+i] = pa | pteflags | PTE_A;
sys/arch/x86/x86/pmap.c
1764
L3_BASE[L3e_idx+i] = pa | pteflags | PTE_A;
sys/arch/x86/x86/pmap.c
1776
L2_BASE[L2e_idx+i] = pa | holepteflags | PTE_A |
sys/arch/x86/x86/pmap.c
1779
L2_BASE[L2e_idx+i] = pa | pteflags | PTE_A |
sys/arch/x86/x86/pmap.c
4012
const pd_entry_t pteflags = PTE_P | PTE_W | pmap_pg_nx | PTE_D | PTE_A;
sys/arch/x86/x86/pmap.c
4056
const pd_entry_t pteflags = PTE_P | PTE_W | pmap_pg_nx | PTE_A;
sys/arch/x86/x86/pmap.c
4099
const pd_entry_t pteflags = PTE_P | PTE_W | pmap_pg_nx | PTE_A | PTE_D;
sys/arch/x86/x86/pmap.c
4101
const pd_entry_t pteflags = PTE_P | pmap_pg_nx | PTE_A | PTE_D;
sys/arch/x86/x86/pmap.c
4245
opte |= PTE_A;
sys/arch/x86/x86/pmap.c
4249
if ((opte & PTE_A) != 0) {
sys/arch/x86/x86/pmap.c
4423
KASSERT((opte & (PTE_D | PTE_A)) != PTE_D);
sys/arch/x86/x86/pmap.c
4424
KASSERT((opte & (PTE_A | PTE_P)) != PTE_A);
sys/arch/x86/x86/pmap.c
4449
need_shootdown = (opte & PTE_A) != 0 &&
sys/arch/x86/x86/pmap.c
4458
npte &= ~(PTE_A | PTE_D);
sys/arch/x86/x86/pmap.c
4460
KASSERT((npte & (PTE_D | PTE_A)) != PTE_D);
sys/arch/x86/x86/pmap.c
4461
KASSERT((npte & (PTE_A | PTE_P)) != PTE_A);
sys/arch/x86/x86/pmap.c
5030
npte |= PTE_A;
sys/arch/x86/x86/pmap.c
5144
npte |= opte & (PTE_A | PTE_D);
sys/arch/x86/x86/pmap.c
5252
if ((~opte & (PTE_P | PTE_A)) == 0 &&
sys/arch/x86/x86/pmap.c
650
if (pte & PTE_A)
sys/arch/x86/x86/pmap.c
664
pte |= PTE_A;