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

/freebsd-current/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)) {
384 } else if (m->pindex < (NUL2E + NUL1E)) {
468 if (ptepindex >= (NUL2E + NUL1E)) {
472 l0index = ptepindex - (NUL2E + NUL1E);
487 if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index)
/freebsd-current/sys/riscv/riscv/
H A Dpmap.c163 * L2 pages: [NUL2E, NUL2E + NUL1E)
164 * L1 pages: [NUL2E + NUL1E, NUL2E + NUL1E + NUL0E)
171 #define NUL1E (Ln_ENTRIES * NUL0E) macro
172 #define NUL2E (Ln_ENTRIES * NUL1E)
1258 if (m->pindex >= NUL2E + NUL1E) {
1280 } else if (m->pindex < NUL2E + NUL1E && pmap_mode != PMAP_MODE_SV39) {
1450 if (ptepindex >= NUL2E + NUL1E) {
1456 KASSERT(ptepindex < NUL2E + NUL1E + NUL0E,
1459 l0index = ptepindex - (NUL2E + NUL1E);
[all...]
/freebsd-current/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)) {
2459 } else if (m->pindex < (NUL2E + NUL1E)) {
2581 m = _pmap_alloc_l3(pmap, NUL2E + NUL1E, NULL);
2648 if (ptepindex >= (NUL2E + NUL1E)) {
2652 l0index = ptepindex - (NUL2E + NUL1E);
2681 if (_pmap_alloc_l3(pmap, NUL2E + NUL1E + l0index,

Completed in 119 milliseconds