Home
last modified time | relevance | path

Searched refs:NUPDE (Results 1 – 4 of 4) sorted by relevance

/NextBSD/sys/mips/mips/
HDpmap.c127 #define NUPDE (NPDEPG * NPDEPG) macro
128 #define NUSERPGTBLS (NUPDE + NPDEPG)
130 #define NUPDE (NPDEPG) macro
131 #define NUSERPGTBLS (NUPDE)
980 if (m->pindex < NUPDE) in _pmap_unwire_ptp()
991 if (m->pindex < NUPDE) { in _pmap_unwire_ptp()
1144 if (ptepindex >= NUPDE) { in _pmap_allocpte()
1145 pmap->pm_segtab[ptepindex - NUPDE] = (pd_entry_t)pageva; in _pmap_allocpte()
1155 if (_pmap_allocpte(pmap, NUPDE + segindex, in _pmap_allocpte()
/NextBSD/sys/arm64/arm64/
HDpmap.c146 #define NUPDE (NPDEPG * NPDEPG) macro
147 #define NUSERPGTBLS (NUPDE + NPDEPG)
1108 if (m->pindex >= NUPDE) { in _pmap_unwire_l3()
1122 if (m->pindex < NUPDE) { in _pmap_unwire_l3()
1241 if (ptepindex >= NUPDE) { in _pmap_alloc_l3()
1245 l1index = ptepindex - NUPDE; in _pmap_alloc_l3()
1258 if (_pmap_alloc_l3(pmap, NUPDE + l1index, in _pmap_alloc_l3()
/NextBSD/sys/amd64/include/
HDpmap.h181 #define NUPDE (NUPDPE*NPDEPG) /* number of userland PD entries */ macro
/NextBSD/sys/amd64/amd64/
HDpmap.c2130 if (m->pindex >= (NUPDE + NUPDPE)) { in _pmap_unwire_ptp()
2135 } else if (m->pindex >= NUPDE) { in _pmap_unwire_ptp()
2147 if (m->pindex < NUPDE) { in _pmap_unwire_ptp()
2154 if (m->pindex >= NUPDE && m->pindex < (NUPDE + NUPDPE)) { in _pmap_unwire_ptp()
2336 if (ptepindex >= (NUPDE + NUPDPE)) { in _pmap_allocpte()
2341 pml4index = ptepindex - (NUPDE + NUPDPE); in _pmap_allocpte()
2345 } else if (ptepindex >= NUPDE) { in _pmap_allocpte()
2352 pdpindex = ptepindex - NUPDE; in _pmap_allocpte()
2358 if (_pmap_allocpte(pmap, NUPDE + NUPDPE + pml4index, in _pmap_allocpte()
2391 if (_pmap_allocpte(pmap, NUPDE + pdpindex, in _pmap_allocpte()
[all …]