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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/RuntimeDxe/
H A DRuntime.c137 EFI_MEMORY_DESCRIPTOR *VirtEntry; local
162 VirtEntry = mVirtualMap;
166 // front of VirtEntry->NumberOfPages to cast it to a 32-bit thing on IA-32
170 ASSERT (((UINTN) VirtEntry->NumberOfPages < 0xffffffff) || (sizeof (UINTN) > 4));
172 if ((VirtEntry->Attribute & EFI_MEMORY_RUNTIME) == EFI_MEMORY_RUNTIME) {
173 if (Address >= VirtEntry->PhysicalStart) {
174 VirtEndOfRange = VirtEntry->PhysicalStart + (((UINTN) VirtEntry->NumberOfPages) * EFI_PAGE_SIZE);
179 *ConvertAddress = (VOID *) (Address - (UINTN) VirtEntry->PhysicalStart + (UINTN) VirtEntry
[all...]

Completed in 67 milliseconds