Home
last modified time | relevance | path

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

/haiku/src/system/kernel/arch/m68k/paging/040/
H A DM68KVMTranslationMap040.cpp329 ASSERT_PRINT((PTE_TYPE(pt[pindex]) != DT_INVALID) == 0, in Map()
395 if (PTE_TYPE(pt[index]) != DT_PAGE in Unmap()
396 && PTE_TYPE(pt[index]) != DT_INDIRECT) { in Unmap()
454 if (PTE_TYPE(pt[index]) == DT_INDIRECT) { in UnmapPage()
466 if (PTE_TYPE(oldEntry) != DT_PAGE) { in UnmapPage()
555 if (PTE_TYPE(pt[index]) == DT_INDIRECT) { in UnmapPages()
563 if (PTE_TYPE(oldEntry) != DT_PAGE) in UnmapPages()
714 if (PTE_TYPE(oldEntry) != DT_PAGE) { in UnmapArea()
794 if (PTE_TYPE(pt[index]) == DT_INDIRECT) { in Query()
814 | ((PTE_TYPE(entry) == DT_PAGE) ? PAGE_PRESENT : 0); in Query()
[all …]
H A DM68KPagingMethod040.cpp740 pt?(PTE_TYPE(pt[index])):-1); in _EarlyQuery()
741 if (pt && PTE_TYPE(pt[index]) == DT_INDIRECT) { in _EarlyQuery()
/haiku/src/system/boot/arch/m68k/
H A Dmmu_040.cpp283 if (PTE_TYPE(pt[pindex]) != DT_PAGE) in lookup_pte()
306 if (PTE_TYPE(*pt) != DT_PAGE) in unmap_page()
332 if (PTE_TYPE(*pt) != DT_INVALID) in map_page()
/haiku/headers/private/kernel/arch/m68k/
H A Darch_040_mmu.h168 #define PTE_TYPE(e) ((e) & M68K_PE_DT_MASK) macro