Home
last modified time | relevance | path

Searched refs:NUL1E (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/arm64/iommu/
H A Diommu_pmap.c74 #define NUL1E (NUL0E * NL1PG) macro
75 #define NUL2E (NUL1E * NL2PG)
77 #define smmu_l0_pindex(v) (NUL2E + NUL1E + ((v) >> IOMMU_L0_SHIFT))
355 if (m->pindex >= (NUL2E + NUL1E)) { in _smmu_pmap_unwire_l3()
384 } else if (m->pindex < (NUL2E + NUL1E)) { in _smmu_pmap_unwire_l3()
468 if (ptepindex >= (NUL2E + NUL1E)) { in _pmap_alloc_l3()
472 l0index = ptepindex - (NUL2E + NUL1E); in _pmap_alloc_l3()
487 if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index) in _pmap_alloc_l3()
/freebsd/sys/riscv/riscv/
H A Dpmap.c173 #define NUL1E (Ln_ENTRIES * NUL0E) macro
174 #define NUL2E (Ln_ENTRIES * NUL1E)
1447 if (m->pindex >= NUL2E + NUL1E) { in _pmap_unwire_ptp()
1469 } else if (m->pindex < NUL2E + NUL1E && pmap_mode != PMAP_MODE_SV39) { in _pmap_unwire_ptp()
1638 if (ptepindex >= NUL2E + NUL1E) { in _pmap_alloc_l3()
1644 KASSERT(ptepindex < NUL2E + NUL1E + NUL0E, in _pmap_alloc_l3()
1647 l0index = ptepindex - (NUL2E + NUL1E); in _pmap_alloc_l3()
1667 NUL2E + NUL1E + l0index, lockp) == NULL) in _pmap_alloc_l3()
/freebsd/sys/arm64/arm64/
H A Dpmap.c168 #define NUL1E (NUL0E * NL1PG) macro
169 #define NUL2E (NUL1E * NL2PG)
179 #define pmap_l0_pindex(v) (NUL2E + NUL1E + ((v) >> L0_SHIFT))
2433 if (m->pindex >= (NUL2E + NUL1E)) { in _pmap_unwire_l3()
2462 } else if (m->pindex < (NUL2E + NUL1E)) { in _pmap_unwire_l3()
2584 m = _pmap_alloc_l3(pmap, NUL2E + NUL1E, NULL); in pmap_pinit_stage()
2651 if (ptepindex >= (NUL2E + NUL1E)) { in _pmap_alloc_l3()
2655 l0index = ptepindex - (NUL2E + NUL1E); in _pmap_alloc_l3()
2684 if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index, in _pmap_alloc_l3()