Lines Matching refs:physicalAddress
264 phys_addr_t physicalAddress = _Allocate32BitPage(); in _AllocateNeededPages() local
269 physicalAddress, B_KERNEL_READ_AREA | B_KERNEL_WRITE_AREA, 0, in _AllocateNeededPages()
274 *(phys_addr_t*)(virtualBase + i * B_PAGE_SIZE) = physicalAddress; in _AllocateNeededPages()
286 phys_addr_t physicalAddress in _Allocate32BitPage() local
289 if (physicalAddress == 0 || physicalAddress > 0xffffffff) { in _Allocate32BitPage()
294 return physicalAddress; in _Allocate32BitPage()
362 virtual void Map(phys_addr_t physicalAddress,
488 X86PagingMethodPAE::PhysicalPageSlotPool::Map(phys_addr_t physicalAddress, in Map() argument
493 pte = (physicalAddress & X86_PAE_PTE_ADDRESS_MASK) in Map()
677 phys_addr_t physicalAddress, uint8 attributes, in MapEarly() argument
712 PutPageTableEntryInTable(entry, physicalAddress, attributes, 0, in MapEarly()
813 phys_addr_t physicalAddress, uint32 attributes, uint32 memoryType, in PutPageTableEntryInTable() argument
816 pae_page_table_entry page = (physicalAddress & X86_PAE_PTE_ADDRESS_MASK) in PutPageTableEntryInTable()
866 phys_addr_t physicalAddress in Allocate32BitPage() local
869 if (fPhysicalPageMapper->GetPage(physicalAddress, &virtualAddress, &_handle) in Allocate32BitPage()
879 _physicalAddress = physicalAddress; in Allocate32BitPage()
885 X86PagingMethodPAE::Free32BitPage(void* address, phys_addr_t physicalAddress, in Free32BitPage() argument
892 vm_page* page = vm_lookup_page(physicalAddress / B_PAGE_SIZE); in Free32BitPage()