Searched defs:pte (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/Include/Ipf/machine/
H A Dpte.h1 /* $NetBSD: pte.h,v 1.1 2006/04/07 14:21:18 cherry Exp $ */
90 pt_entry_t pte; member in struct:ia64_lpte
/vbox/src/VBox/Devices/PC/BIOS/
H A Dvds.h37 uint32_t pte[1]; /* Page table entry array. */ member in union:__anon15007::__anon15008
/vbox/src/VBox/Runtime/r0drv/linux/
H A Dmemobj-r0drv-linux.c1368 pte_t pte = *ptep; local
1369 pte.pte_high &= 0xfff00000;
1370 pte.pte_high |= ((Phys >> 32) & 0x000fffff);
1371 pte.pte_low &= 0x00000fff;
1372 pte.pte_low |= (Phys & 0xfffff000);
1373 set_pte(ptep, pte);
/vbox/src/recompiler/target-i386/
H A Dhelper.c576 uint64_t ptep, pte; local
591 pte = addr;
697 pte = pde & ((PHYS_ADDR_MASK & ~(page_size - 1)) | 0xfff);
707 pte = ldq_phys(pte_addr);
708 if (!(pte & PG_PRESENT_MASK)) {
712 if (!(env->efer & MSR_EFER_NXE) && (pte & PG_NX_MASK)) {
716 /* combine pde and pte nx, user and rw protections */
717 ptep &= pte ^ PG_NX_MASK;
731 is_dirty = is_write && !(pte & PG_DIRTY_MASK);
732 if (!(pte
871 uint64_t pte; local
[all...]

Completed in 43 milliseconds