Home
last modified time | relevance | path

Searched refs:maxAddress (Results 1 – 6 of 6) sorted by relevance

/haiku/src/system/boot/platform/efi/arch/x86_64/
H A Darch_mmu.cpp222 uint64 maxAddress = 0; in arch_mmu_generate_post_efi_page_tables() local
237 maxAddress = std::max(maxAddress, in arch_mmu_generate_post_efi_page_tables()
247 maxAddress = std::max(maxAddress, (uint64)0x100000000ll); in arch_mmu_generate_post_efi_page_tables()
248 maxAddress = ROUNDUP(maxAddress, 0x40000000); in arch_mmu_generate_post_efi_page_tables()
253 if (maxAddress / 0x40000000 > 512) in arch_mmu_generate_post_efi_page_tables()
265 for (uint64 i = 0; i < maxAddress; i += 0x40000000) { in arch_mmu_generate_post_efi_page_tables()
/haiku/src/system/boot/platform/bios_ia32/
H A Dlong.cpp109 uint64 maxAddress = 0; in long_mmu_init() local
111 maxAddress = std::max(maxAddress, in long_mmu_init()
118 maxAddress = std::max(maxAddress, (uint64)0x100000000ll); in long_mmu_init()
119 maxAddress = ROUNDUP(maxAddress, 0x40000000); in long_mmu_init()
124 if (maxAddress / 0x40000000 > 512) in long_mmu_init()
159 for (uint64 i = 0; i < maxAddress; i += 0x40000000) { in long_mmu_init()
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp191 const char* maxAddress = dataSource + fTargetBlock->Size(); in Draw() local
203 for (; currentAddress < maxAddress && drawPoint.y < rect.bottom in Draw()
215 > maxAddress) { in Draw()
216 currentCharsPerLine = maxAddress - currentAddress; in Draw()
335 target_addr_t maxAddress = fTargetBlock->BaseAddress() in KeyDown() local
395 newAddress = maxAddress; in KeyDown()
428 if (newAddress < maxAddress) { in KeyDown()
446 else if (newAddress > maxAddress) in KeyDown()
447 newAddress = maxAddress; in KeyDown()
/haiku/headers/private/kernel/vm/
H A Dvm.h62 page_num_t vm_allocate_early_physical_page_etc(kernel_args *args, phys_addr_t maxAddress = 0);
/haiku/src/kits/debugger/dwarf/
H A DDwarfFile.cpp737 target_addr_t maxAddress = unit->MaxAddress(); in ResolveRangeList() local
749 if (start == maxAddress) { in ResolveRangeList()
3175 target_addr_t maxAddress = unit->MaxAddress(); in _FindLocationExpression() local
3188 if (start == maxAddress) { in _FindLocationExpression()
/haiku/src/system/kernel/vm/
H A Dvm.cpp3678 vm_allocate_early_physical_page_etc(kernel_args* args, phys_addr_t maxAddress) in vm_allocate_early_physical_page_etc() argument
3684 if (maxAddress == 0) in vm_allocate_early_physical_page_etc()
3685 maxAddress = __HAIKU_PHYS_ADDR_MAX; in vm_allocate_early_physical_page_etc()
3743 if (nextPage > maxAddress) in vm_allocate_early_physical_page_etc()
3766 if (nextPage > maxAddress) in vm_allocate_early_physical_page_etc()
3796 if (range.start > maxAddress) in vm_allocate_early_physical_page_etc()