Searched refs:pte32 (Results 1 – 2 of 2) sorted by relevance
289 i386_pte_t pte32; in _i386_iterator_next() local306 pte32 = _i386_pte_get(it->kd, it->pteindex); in _i386_iterator_next()307 if ((pte32 & I386_PG_V) == 0) in _i386_iterator_next()309 *prot = _i386_entry_to_prot(pte32); in _i386_iterator_next()310 *pa = pte32 & I386_PG_FRAME; in _i386_iterator_next()
2085 uint32_t *ptpbase32, pte32; in _vm_gla2gpa() local2132 pte32 = ptpbase32[ptpindex]; in _vm_gla2gpa()2134 if ((pte32 & PG_V) == 0 || in _vm_gla2gpa()2135 (usermode && (pte32 & PG_U) == 0) || in _vm_gla2gpa()2136 (writable && (pte32 & PG_RW) == 0)) { in _vm_gla2gpa()2139 pte32); in _vm_gla2gpa()2152 if (!check_only && (pte32 & PG_A) == 0) { in _vm_gla2gpa()2154 pte32, pte32 | PG_A) == 0) { in _vm_gla2gpa()2160 if (nlevels > 0 && (pte32 & PG_PS) != 0) in _vm_gla2gpa()2163 ptpphys = pte32; in _vm_gla2gpa()[all …]