Lines Matching refs:EfiMemoryDescriptor

591   IN EFI_MEMORY_DESCRIPTOR    *EfiMemoryDescriptor  in PrepareHobMemory()  argument
636 if (EfiMemoryDescriptor[Index].PhysicalStart < 0x100000) { in PrepareHobMemory()
642 if (EfiMemoryDescriptor[Index].PhysicalStart >= 0x100000) { in PrepareHobMemory()
643 if (EfiMemoryDescriptor[Index].Type == EfiConventionalMemory) { in PrepareHobMemory()
645 gHob->MemoryAbove1MB.PhysicalStart = EfiMemoryDescriptor[Index].PhysicalStart; in PrepareHobMemory()
646 …gHob->MemoryAbove1MB.ResourceLength = LShiftU64 (EfiMemoryDescriptor[Index].NumberOfPages, EFI_PAG… in PrepareHobMemory()
647 …oryAbove1MB.PhysicalStart + gHob->MemoryAbove1MB.ResourceLength == EfiMemoryDescriptor[Index].Phys… in PrepareHobMemory()
648 …gHob->MemoryAbove1MB.ResourceLength += LShiftU64 (EfiMemoryDescriptor[Index].NumberOfPages, EFI_PA… in PrepareHobMemory()
651 if ((EfiMemoryDescriptor[Index].Type == EfiReservedMemoryType) || in PrepareHobMemory()
652 (EfiMemoryDescriptor[Index].Type >= EfiACPIReclaimMemory) ) { in PrepareHobMemory()
655 if ((EfiMemoryDescriptor[Index].Type == EfiRuntimeServicesCode) || in PrepareHobMemory()
656 (EfiMemoryDescriptor[Index].Type == EfiRuntimeServicesData)) { in PrepareHobMemory()
663 if (EfiMemoryDescriptor[Index].PhysicalStart >= 0x100000000LL) { in PrepareHobMemory()
664 if (EfiMemoryDescriptor[Index].Type == EfiConventionalMemory) { in PrepareHobMemory()
666 gHob->MemoryAbove4GB.PhysicalStart = EfiMemoryDescriptor[Index].PhysicalStart; in PrepareHobMemory()
667 …gHob->MemoryAbove4GB.ResourceLength = LShiftU64 (EfiMemoryDescriptor[Index].NumberOfPages, EFI_PAG… in PrepareHobMemory()
670 EfiMemoryDescriptor[Index].PhysicalStart) { in PrepareHobMemory()
671 …gHob->MemoryAbove4GB.ResourceLength += LShiftU64 (EfiMemoryDescriptor[Index].NumberOfPages, EFI_PA… in PrepareHobMemory()