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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Memory/
H A DMemoryServices.c117 @param MemoryType The type of memory to allocate.
133 IN EFI_MEMORY_TYPE MemoryType,
144 if ((MemoryType != EfiLoaderCode) &&
145 (MemoryType != EfiLoaderData) &&
146 (MemoryType != EfiRuntimeServicesCode) &&
147 (MemoryType != EfiRuntimeServicesData) &&
148 (MemoryType != EfiBootServicesCode) &&
149 (MemoryType != EfiBootServicesData) &&
150 (MemoryType != EfiACPIReclaimMemory) &&
151 (MemoryType !
131 PeiAllocatePages( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT EFI_PHYSICAL_ADDRESS *Memory ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DPage.c140 @param MemoryType The type of memory to turn the allocated pages
156 IN EFI_MEMORY_TYPE MemoryType,
163 if (MemoryType != EfiRuntimeServicesCode &&
164 MemoryType != EfiRuntimeServicesData) {
154 SmmAllocatePages( IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN NumberOfPages, OUT EFI_PHYSICAL_ADDRESS *Memory ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiMemoryAllocationLib/
H A DMemoryAllocationLib.c33 @param MemoryType The type of memory to allocate.
41 IN EFI_MEMORY_TYPE MemoryType,
52 Status = PeiServicesAllocatePages (MemoryType, Pages, &Memory);
164 @param MemoryType The type of memory to allocate.
175 IN EFI_MEMORY_TYPE MemoryType,
198 Memory = InternalAllocatePages (MemoryType, Pages + EFI_SIZE_TO_PAGES (Alignment));
328 @param MemoryType The type of memory to allocate.
336 IN EFI_MEMORY_TYPE MemoryType,
345 return InternalAllocatePages (MemoryType, EFI_SIZE_TO_PAGES (AllocationSize));
40 InternalAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages ) argument
174 InternalAllocateAlignedPages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, IN UINTN Alignment ) argument
335 InternalAllocatePool( IN EFI_MEMORY_TYPE MemoryType, IN UINTN AllocationSize ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/
H A DIsaIo.c1342 @param[in] MemoryType The type of memory to allocate.
1348 @retval EFI_INVALID_PARAMETER Type is invalid or MemoryType is invalid or HostAddress is NULL
1358 IN EFI_MEMORY_TYPE MemoryType,
1387 if (MemoryType != EfiBootServicesData && MemoryType != EfiRuntimeServicesData) {
1408 Status = gBS->AllocatePages (Type, MemoryType, Pages, &PhysicalAddress);
1355 IsaIoAllocateBuffer( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT VOID **HostAddress, IN UINT64 Attributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Mem/
H A DPool.c67 EFI_MEMORY_TYPE MemoryType; member in struct:__anon10944
98 mPoolHead[Type].MemoryType = (EFI_MEMORY_TYPE) Type;
109 @param MemoryType Memory type of which pool head is looked for
116 IN EFI_MEMORY_TYPE MemoryType
123 if (MemoryType >= 0 && MemoryType < EfiMaxMemoryType) {
124 return &mPoolHead[MemoryType];
128 // MemoryType values in the range 0x80000000..0xFFFFFFFF are reserved for use by UEFI
131 if (MemoryType >= (INT32)0x80000000 && MemoryType <
[all...]
H A DPage.c1069 @param MemoryType The type of memory to turn the allocated pages
1087 IN EFI_MEMORY_TYPE MemoryType,
1101 if ((MemoryType >= EfiMaxMemoryType && MemoryType <= 0x7fffffff) ||
1102 MemoryType == EfiConventionalMemory) {
1112 if (MemoryType == EfiACPIReclaimMemory ||
1113 MemoryType == EfiACPIMemoryNVS ||
1114 MemoryType == EfiRuntimeServicesCode ||
1115 MemoryType == EfiRuntimeServicesData) {
1149 Start = FindFreePages (MaxAddress, NumberOfPages, MemoryType, Alignmen
1085 CoreAllocatePages( IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN NumberOfPages, IN OUT EFI_PHYSICAL_ADDRESS *Memory ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c32 @param MemoryType The type of memory to allocate.
40 IN EFI_MEMORY_TYPE MemoryType,
51 Status = CoreAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
164 @param MemoryType The type of memory to allocate.
174 IN EFI_MEMORY_TYPE MemoryType,
205 Status = CoreAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
231 Status = CoreAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
359 @param MemoryType The type of memory to allocate.
367 IN EFI_MEMORY_TYPE MemoryType,
374 Status = CoreAllocatePool (MemoryType, AllocationSiz
39 InternalAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages ) argument
173 InternalAllocateAlignedPages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, IN UINTN Alignment ) argument
366 InternalAllocatePool( IN EFI_MEMORY_TYPE MemoryType, IN UINTN AllocationSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c111 @param MemoryType The type of memory to allocate.
119 IN EFI_MEMORY_TYPE MemoryType,
130 Status = SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
255 @param MemoryType The type of memory to allocate.
265 IN EFI_MEMORY_TYPE MemoryType,
296 Status = SmmAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
322 Status = SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
462 @param MemoryType The type of memory to allocate.
470 IN EFI_MEMORY_TYPE MemoryType,
477 Status = SmmAllocatePool (MemoryType, AllocationSiz
118 InternalAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages ) argument
264 InternalAllocateAlignedPages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, IN UINTN Alignment ) argument
469 InternalAllocatePool( IN EFI_MEMORY_TYPE MemoryType, IN UINTN AllocationSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesLib/
H A DPeiServicesLib.c341 @param MemoryType Type of memory to allocate.
354 IN EFI_MEMORY_TYPE MemoryType,
362 return (*PeiServices)->AllocatePages (PeiServices, MemoryType, Pages, Memory);
353 PeiServicesAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT EFI_PHYSICAL_ADDRESS *Memory ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmMemoryAllocationLib/
H A DMemoryAllocationLib.c145 @param MemoryType The type of memory to allocate.
153 IN EFI_MEMORY_TYPE MemoryType,
164 Status = gSmst->SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
289 @param MemoryType The type of memory to allocate.
300 IN EFI_MEMORY_TYPE MemoryType,
331 Status = gSmst->SmmAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
357 Status = gSmst->SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
501 @param MemoryType The type of memory to allocate.
509 IN EFI_MEMORY_TYPE MemoryType,
516 Status = gSmst->SmmAllocatePool (MemoryType, AllocationSiz
152 InternalAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages ) argument
299 InternalAllocateAlignedPages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, IN UINTN Alignment ) argument
508 InternalAllocatePool( IN EFI_MEMORY_TYPE MemoryType, IN UINTN AllocationSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib/
H A DMemoryAllocationLib.c32 @param MemoryType The type of memory to allocate.
40 IN EFI_MEMORY_TYPE MemoryType,
51 Status = gBS->AllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
164 @param MemoryType The type of memory to allocate.
174 IN EFI_MEMORY_TYPE MemoryType,
205 Status = gBS->AllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
231 Status = gBS->AllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
359 @param MemoryType The type of memory to allocate.
367 IN EFI_MEMORY_TYPE MemoryType,
374 Status = gBS->AllocatePool (MemoryType, AllocationSiz
39 InternalAllocatePages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages ) argument
173 InternalAllocateAlignedPages( IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, IN UINTN Alignment ) argument
366 InternalAllocatePool( IN EFI_MEMORY_TYPE MemoryType, IN UINTN AllocationSize ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaIo.c1682 @param[in] MemoryType The type of memory to allocate.
1688 @retval EFI_INVALID_PARAMETER Type is invalid or MemoryType is invalid or HostAddress is NULL
1698 IN EFI_MEMORY_TYPE MemoryType,
1727 if (MemoryType != EfiBootServicesData && MemoryType != EfiRuntimeServicesData) {
1748 Status = gBS->AllocatePages (Type, MemoryType, Pages, &PhysicalAddress);
1695 IsaIoAllocateBuffer( IN EFI_ISA_IO_PROTOCOL *This, IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT VOID **HostAddress, IN UINT64 Attributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciIo.c1049 @param MemoryType The type of memory to allocate, EfiBootServicesData or
1068 IN EFI_MEMORY_TYPE MemoryType,
1091 MemoryType,
1065 PciIoAllocateBuffer( IN EFI_PCI_IO_PROTOCOL *This, IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT VOID **HostAddress, IN UINT64 Attributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/PcAtChipsetPkg/PciHostBridgeDxe/
H A DPciRootBridgeIo.c409 @param MemoryType The type of memory to allocate, EfiBootServicesData or EfiRuntimeServicesData.
417 @retval EFI_INVALID_PARAMETER MemoryType is invalid.
429 IN EFI_MEMORY_TYPE MemoryType,
1882 @param MemoryType The type of memory to allocate, EfiBootServicesData or EfiRuntimeServicesData.
1890 @retval EFI_INVALID_PARAMETER MemoryType is invalid.
1902 IN EFI_MEMORY_TYPE MemoryType,
1928 if (MemoryType != EfiBootServicesData && MemoryType != EfiRuntimeServicesData) {
1937 Status = gBS->AllocatePages (AllocateMaxAddress, MemoryType, Pages, &PhysicalAddress);
1899 RootBridgeIoAllocateBuffer( IN EFI_PCI_ROOT_BRIDGE_IO_PROTOCOL *This, IN EFI_ALLOCATE_TYPE Type, IN EFI_MEMORY_TYPE MemoryType, IN UINTN Pages, OUT VOID **HostAddress, IN UINT64 Attributes ) argument
/vbox/src/VBox/Devices/EFI/Firmware/UefiCpuPkg/Library/MtrrLib/
H A DMtrrLib.c946 UINT64 MemoryType; local
974 MemoryType = (UINT64)Attribute;
999 Status = ProgramFixedMtrr (MemoryType, &BaseAddress, &Length);
1030 Status = CombineMemoryAttribute (MemoryType, &BaseAddress, &Length, VariableMtrr, &UsedMtrr, &OverwriteExistingMtrr);
1105 MemoryType,
1135 MemoryType,
1140 MemoryType = MTRR_CACHE_UNCACHEABLE;
1162 MemoryType,
1549 UINTN MemoryType;
1583 MemoryType
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Pi/
H A DPiHob.h137 EFI_MEMORY_TYPE MemoryType; member in struct:__anon11983
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Pi/
H A DPiHob.h139 EFI_MEMORY_TYPE MemoryType; member in struct:__anon15585
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDevicePath.h124 UINT32 MemoryType; member in struct:__anon12053
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/efi/Protocol/
H A DDevicePath.h126 UINT32 MemoryType; member in struct:__anon15617
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DLibSmbios.h294 UINT8 MemoryType; member in struct:__anon12854
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DSmBios.h1495 UINT8 MemoryType; ///< The enumeration value from MEMORY_DEVICE_TYPE. member in struct:__anon11858
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Guid/
H A DDataHubRecords.h1276 EFI_MEMORY_ARRAY_TYPE MemoryType; member in struct:__anon10612

Completed in 112 milliseconds