Symbol: _NPCPV
sys/amd64/amd64/pmap.c
5347
PV_STAT(counter_u64_add(pv_entry_spare, -_NPCPV));
sys/amd64/amd64/pmap.c
5447
PV_STAT(counter_u64_add(pv_entry_spare, -_NPCPV));
sys/amd64/amd64/pmap.c
5564
PV_STAT(counter_u64_add(pv_entry_spare, _NPCPV - 1));
sys/amd64/amd64/pmap.c
5640
for (reclaimed = false; avail < needed; avail += _NPCPV) {
sys/amd64/amd64/pmap.c
5659
PV_STAT(counter_u64_add(pv_entry_spare, _NPCPV));
sys/arm/arm/pmap-v6.c
1774
pv_entry_max = roundup(pv_entry_max, _NPCPV);
sys/arm/arm/pmap-v6.c
1805
pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc);
sys/arm/arm/pmap-v6.c
2944
PV_STAT(pv_entry_spare -= _NPCPV);
sys/arm/arm/pmap-v6.c
2977
PV_STAT(pv_entry_spare -= _NPCPV);
sys/arm/arm/pmap-v6.c
3099
PV_STAT(pv_entry_spare += _NPCPV - 1);
sys/arm64/arm64/pmap.c
3427
PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
sys/arm64/arm64/pmap.c
3529
PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
sys/arm64/arm64/pmap.c
3643
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV - 1));
sys/arm64/arm64/pmap.c
3685
for (reclaimed = false; avail < needed; avail += _NPCPV) {
sys/arm64/arm64/pmap.c
3701
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV));
sys/i386/i386/pmap.c
1040
pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc);
sys/i386/i386/pmap.c
2412
PV_STAT(pv_entry_spare -= _NPCPV);
sys/i386/i386/pmap.c
2482
PV_STAT(pv_entry_spare -= _NPCPV);
sys/i386/i386/pmap.c
2567
PV_STAT(pv_entry_spare += _NPCPV - 1);
sys/i386/i386/pmap.c
994
pv_entry_max = roundup(pv_entry_max, _NPCPV);
sys/powerpc/aim/mmu_radix.c
1172
#define PC_FREE1 ((1ul << (_NPCPV % 64)) - 1)
sys/powerpc/aim/mmu_radix.c
1216
for (reclaimed = false; avail < needed; avail += _NPCPV) {
sys/powerpc/aim/mmu_radix.c
1233
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV));
sys/powerpc/aim/mmu_radix.c
1496
PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
sys/powerpc/aim/mmu_radix.c
1586
PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
sys/powerpc/aim/mmu_radix.c
1662
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV - 1));
sys/powerpc/include/pmap.h
216
#define _NPCM howmany(_NPCPV, 64)
sys/powerpc/include/pmap.h
237
struct pv_entry pc_pventry[_NPCPV];
sys/riscv/riscv/pmap.c
2130
PV_STAT(atomic_subtract_int(&pv_entry_spare, _NPCPV));
sys/riscv/riscv/pmap.c
2207
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV - 1));
sys/riscv/riscv/pmap.c
2248
for (reclaimed = false; avail < needed; avail += _NPCPV) {
sys/riscv/riscv/pmap.c
2266
PV_STAT(atomic_add_int(&pv_entry_spare, _NPCPV));
sys/sys/_pv_entry.h
103
struct pv_entry pc_pventry[_NPCPV];
sys/sys/_pv_entry.h
78
#ifndef _NPCPV
sys/sys/_pv_entry.h
87
#define _NPCM howmany(_NPCPV, __LONG_WIDTH__)
sys/sys/_pv_entry.h
89
#define PC_FREEL ((1ul << (_NPCPV % __LONG_WIDTH__)) - 1)