Symbol: NUM_DIRTBL_PER_PAGE
src/system/boot/arch/m68k/mmu_030.cpp
116
if (i % NUM_DIRTBL_PER_PAGE)
src/system/boot/arch/m68k/mmu_040.cpp
162
if (i % NUM_DIRTBL_PER_PAGE)
src/system/boot/arch/m68k/mmu_040.cpp
210
unsigned aindex = index & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
src/system/boot/arch/m68k/mmu_040.cpp
216
for (i = 0; i < NUM_DIRTBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1464
unsigned aindex = index & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
1473
for (i = 0; i < NUM_DIRTBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
361
pgdir = &(((page_directory_entry *)dirpage)[i%NUM_DIRTBL_PER_PAGE]);
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
384
if (((i + 1) % NUM_DIRTBL_PER_PAGE) == 0) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
504
need = (pgdirs + NUM_DIRTBL_PER_PAGE - 1) / NUM_DIRTBL_PER_PAGE;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
558
for (i = 0; i < NUM_DIRTBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
559
unsigned aindex = rindex & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
584
pd += (rindex % NUM_DIRTBL_PER_PAGE) * NUM_DIRENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
680
pd += (index % NUM_DIRTBL_PER_PAGE) * NUM_DIRENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
807
pd += (index % NUM_DIRTBL_PER_PAGE) * NUM_DIRENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
902
pd += (index % NUM_DIRTBL_PER_PAGE) * NUM_DIRENT_PER_TBL;
src/system/kernel/arch/m68k/arch_vm_translation_map_impl.cpp
974
pd += (index % NUM_DIRTBL_PER_PAGE) * NUM_DIRENT_PER_TBL;
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
494
unsigned aindex = index & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/paging/040/M68KPagingMethod040.cpp
503
for (i = 0; i < NUM_DIRTBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
103
if (((i + 1) % NUM_DIRTBL_PER_PAGE) == 0) {
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
197
need = (pgdirs + NUM_DIRTBL_PER_PAGE - 1) / NUM_DIRTBL_PER_PAGE;
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
251
for (i = 0; i < NUM_DIRTBL_PER_PAGE; i++) {
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
252
uint32 aindex = rindex & ~(NUM_DIRTBL_PER_PAGE-1); /* aligned */
src/system/kernel/arch/m68k/paging/040/M68KVMTranslationMap040.cpp
79
pgdir = &(((page_directory_entry *)dirpage)[i%NUM_DIRTBL_PER_PAGE]);
src/system/kernel/arch/m68k/paging/040/paging.h
69
* NUM_DIRTBL_PER_PAGE * NUM_DIRENT_PER_TBL;