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.c171 #define NUL1E (Ln_ENTRIES * NUL0E) macro
172 #define NUL2E (Ln_ENTRIES * NUL1E)
1258 if (m->pindex >= NUL2E + NUL1E) { in _pmap_unwire_ptp()
1280 } else if (m->pindex < NUL2E + NUL1E && pmap_mode != PMAP_MODE_SV39) { in _pmap_unwire_ptp()
1450 if (ptepindex >= NUL2E + NUL1E) { in _pmap_alloc_l3()
1456 KASSERT(ptepindex < NUL2E + NUL1E + NUL0E, in _pmap_alloc_l3()
1459 l0index = ptepindex - (NUL2E + NUL1E); in _pmap_alloc_l3()
1479 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))
2430 if (m->pindex >= (NUL2E + NUL1E)) { in _pmap_unwire_l3()
2459 } else if (m->pindex < (NUL2E + NUL1E)) { in _pmap_unwire_l3()
2581 m = _pmap_alloc_l3(pmap, NUL2E + NUL1E, NULL); in pmap_pinit_stage()
2648 if (ptepindex >= (NUL2E + NUL1E)) { in _pmap_alloc_l3()
2652 l0index = ptepindex - (NUL2E + NUL1E); in _pmap_alloc_l3()
2681 if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index, in _pmap_alloc_l3()