Symbol: NUM_PAGETBL_PER_PAGE
src/system/boot/arch/m68k/mmu_040.cpp
234
unsigned aindex = index & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */
src/system/boot/arch/m68k/mmu_040.cpp
240
for (i = 0; i < NUM_PAGETBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1267
B_PAGE_SIZE * (IOSPACE_SIZE / (B_PAGE_SIZE * NUM_PAGEENT_PER_TBL * NUM_PAGETBL_PER_PAGE)), ~0L,
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1279
memset(iospace_pgtables, 0, B_PAGE_SIZE * (IOSPACE_SIZE / (B_PAGE_SIZE * NUM_PAGEENT_PER_TBL * NUM_PAGETBL_PER_PAGE)));
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1488
unsigned aindex = index & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1497
for (i = 0; i < NUM_PAGETBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
363
for (j = 0; j <= NUM_DIRENT_PER_TBL; j+=NUM_PAGETBL_PER_PAGE) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
506
need = ((pgdirs * NUM_DIRENT_PER_TBL) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
512
need += (VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
603
for (i = 0; i < NUM_PAGETBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
604
unsigned aindex = dindex & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
627
pt += (dindex % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
696
pt += (index % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
823
pt += (index % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
918
pt += (index % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
990
pt += (index % NUM_PAGETBL_PER_PAGE) * NUM_PAGEENT_PER_TBL;
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
518
unsigned aindex = index & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
527
for (i = 0; i < NUM_PAGETBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
670
(size / (B_PAGE_SIZE * NUM_PAGEENT_PER_TBL * NUM_PAGETBL_PER_PAGE)));
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
199
need = ((pgdirs * NUM_DIRENT_PER_TBL) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
205
need += (VADDR_TO_PDENT(end) + 1 - VADDR_TO_PDENT(start) + NUM_PAGETBL_PER_PAGE - 1) / NUM_PAGETBL_PER_PAGE;
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
302
for (i = 0; i < NUM_PAGETBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
303
uint32 aindex = dindex & ~(NUM_PAGETBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
82
j+=NUM_PAGETBL_PER_PAGE) {
src/system/kernel/arch/m68k/paging/040/paging.h
65
* NUM_PAGETBL_PER_PAGE * NUM_PAGEENT_PER_TBL;