Symbol: NUL1E
sys/arm64/arm64/pmap.c
172
#define NUL2E (NUL1E * NL2PG)
sys/arm64/arm64/pmap.c
182
#define pmap_l0_pindex(v) (NUL2E + NUL1E + ((v) >> L0_SHIFT))
sys/arm64/arm64/pmap.c
2658
if (m->pindex >= (NUL2E + NUL1E)) {
sys/arm64/arm64/pmap.c
2687
} else if (m->pindex < (NUL2E + NUL1E)) {
sys/arm64/arm64/pmap.c
2809
m = _pmap_alloc_l3(pmap, NUL2E + NUL1E, NULL);
sys/arm64/arm64/pmap.c
2876
if (ptepindex >= (NUL2E + NUL1E)) {
sys/arm64/arm64/pmap.c
2880
l0index = ptepindex - (NUL2E + NUL1E);
sys/arm64/arm64/pmap.c
2909
if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index,
sys/arm64/iommu/iommu_pmap.c
355
if (m->pindex >= (NUL2E + NUL1E)) {
sys/arm64/iommu/iommu_pmap.c
384
} else if (m->pindex < (NUL2E + NUL1E)) {
sys/arm64/iommu/iommu_pmap.c
468
if (ptepindex >= (NUL2E + NUL1E)) {
sys/arm64/iommu/iommu_pmap.c
472
l0index = ptepindex - (NUL2E + NUL1E);
sys/arm64/iommu/iommu_pmap.c
487
if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index)
sys/arm64/iommu/iommu_pmap.c
75
#define NUL2E (NUL1E * NL2PG)
sys/arm64/iommu/iommu_pmap.c
77
#define smmu_l0_pindex(v) (NUL2E + NUL1E + ((v) >> IOMMU_L0_SHIFT))
sys/riscv/riscv/pmap.c
1531
if (m->pindex >= NUL2E + NUL1E) {
sys/riscv/riscv/pmap.c
1553
} else if (m->pindex < NUL2E + NUL1E && pmap_mode != PMAP_MODE_SV39) {
sys/riscv/riscv/pmap.c
1722
if (ptepindex >= NUL2E + NUL1E) {
sys/riscv/riscv/pmap.c
1728
KASSERT(ptepindex < NUL2E + NUL1E + NUL0E,
sys/riscv/riscv/pmap.c
1731
l0index = ptepindex - (NUL2E + NUL1E);
sys/riscv/riscv/pmap.c
174
#define NUL2E (Ln_ENTRIES * NUL1E)
sys/riscv/riscv/pmap.c
1751
NUL2E + NUL1E + l0index, lockp) == NULL)