Searched refs:Memory (Results 1 - 25 of 47) sorted by relevance

12

/vbox/src/libs/xpcom18a4/xpcom/typelib/xpidl/macplugin/
H A Dmac_console.h44 #include <Memory.h>
H A Dmac_strings.cpp8 #include <Memory.h>
H A Dmac_memory.cpp45 #include <Memory.h>
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiMemoryAllocationLib/
H A DMemoryAllocationLib.c46 EFI_PHYSICAL_ADDRESS Memory; local
52 Status = PeiServicesAllocatePages (MemoryType, Pages, &Memory);
56 return (VOID *) (UINTN) Memory;
127 functions in the Memory Allocation Library.
130 must have been allocated on a previous call to the page allocation services of the Memory
134 If Buffer was not allocated with a page allocation function in the Memory Allocation Library,
180 VOID *Memory; local
198 Memory = InternalAllocatePages (MemoryType, Pages + EFI_SIZE_TO_PAGES (Alignment));
204 return (VOID *) (UINTN) (((UINTN) Memory + AlignmentMask) & ~AlignmentMask);
293 allocation functions in the Memory Allocatio
438 VOID *Memory; local
466 VOID *Memory; local
543 VOID *Memory; local
579 VOID *Memory; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c45 EFI_PHYSICAL_ADDRESS Memory; local
51 Status = CoreAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
55 return (VOID *) (UINTN) Memory;
126 functions in the Memory Allocation Library.
129 must have been allocated on a previous call to the page allocation services of the Memory
133 If Buffer was not allocated with a page allocation function in the Memory Allocation Library,
180 EFI_PHYSICAL_ADDRESS Memory; local
205 Status = CoreAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
209 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
210 UnalignedPages = EFI_SIZE_TO_PAGES (AlignedMemory - (UINTN) Memory);
372 VOID *Memory; local
464 VOID *Memory; local
563 VOID *Memory; local
[all...]
H A DDxeCoreMemoryAllocationServices.h2 Contains function prototypes for Memory Services in DxeCore.
4 This header file borrows the DxeCore Memory Allocation services as the primitive
29 @param Memory A pointer to receive the base allocated memory
32 @return Status. On success, Memory is filled in with the base address allocated
46 IN OUT EFI_PHYSICAL_ADDRESS *Memory
54 @param Memory Base address of memory being freed
65 IN EFI_PHYSICAL_ADDRESS Memory,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/PiSmmCoreMemoryAllocationLib/
H A DMemoryAllocationLib.c124 EFI_PHYSICAL_ADDRESS Memory; local
130 Status = SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
134 return (VOID *) (UINTN) Memory;
205 functions in the Memory Allocation Library.
208 must have been allocated on a previous call to the page allocation services of the Memory
212 If Buffer was not allocated with a page allocation function in the Memory Allocation Library,
271 EFI_PHYSICAL_ADDRESS Memory; local
296 Status = SmmAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
300 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
301 UnalignedPages = EFI_SIZE_TO_PAGES (AlignedMemory - (UINTN) Memory);
475 VOID *Memory; local
567 VOID *Memory; local
666 VOID *Memory; local
[all...]
H A DPiSmmCoreMemoryAllocationServices.h2 Contains function prototypes for Memory Services in the SMM Core.
4 This header file borrows the PiSmmCore Memory Allocation services as the primitive
28 @param Memory A pointer to receive the base allocated memory
43 OUT EFI_PHYSICAL_ADDRESS *Memory
49 @param Memory Base address of memory being freed
60 IN EFI_PHYSICAL_ADDRESS Memory,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/SmmMemoryAllocationLib/
H A DMemoryAllocationLib.c7 allocations through the SMM Services Table. The functions in the Memory
9 type. For this SMM specific instance of the Memory Allocation Library,
158 EFI_PHYSICAL_ADDRESS Memory; local
164 Status = gSmst->SmmAllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
168 return (VOID *) (UINTN) Memory;
239 functions in the Memory Allocation Library.
243 of the Memory Allocation Library. If it is not possible to free allocated pages,
246 If Buffer was not allocated with a page allocation function in the Memory Allocation
306 EFI_PHYSICAL_ADDRESS Memory; local
331 Status = gSmst->SmmAllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
514 VOID *Memory; local
609 VOID *Memory; local
708 VOID *Memory; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib/
H A DMemoryAllocationLib.c45 EFI_PHYSICAL_ADDRESS Memory; local
51 Status = gBS->AllocatePages (AllocateAnyPages, MemoryType, Pages, &Memory);
55 return (VOID *) (UINTN) Memory;
126 functions in the Memory Allocation Library.
129 must have been allocated on a previous call to the page allocation services of the Memory
133 If Buffer was not allocated with a page allocation function in the Memory Allocation Library,
180 EFI_PHYSICAL_ADDRESS Memory; local
205 Status = gBS->AllocatePages (AllocateAnyPages, MemoryType, RealPages, &Memory);
209 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
210 UnalignedPages = EFI_SIZE_TO_PAGES (AlignedMemory - (UINTN) Memory);
372 VOID *Memory; local
464 VOID *Memory; local
563 VOID *Memory; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Misc/
H A DDebugImageInfo.c43 EFI_PHYSICAL_ADDRESS Memory; local
63 Memory = PcdGet64 (PcdMaxEfiSystemTablePointerAddress);
64 if (Memory == 0) {
65 Memory = MAX_ADDRESS;
71 &Memory
86 &Memory
97 AlignedMemory = ((UINTN) Memory + AlignmentMask) & ~AlignmentMask;
98 UnalignedPages = EFI_SIZE_TO_PAGES (AlignedMemory - (UINTN)Memory);
103 Status = CoreFreePages (Memory, UnalignedPages);
106 Memory
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Gcd/
H A DGcd.h3 convert from GCD attributes to EFI Memory Map attributes.
37 // The data structure used to convert from GCD attributes to EFI Memory Map attributes
42 BOOLEAN Memory; member in struct:__anon10928
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DPage.c2 SMM Memory page management functions.
33 @return Memory address of allocated pages.
75 @return Memory address of allocated pages.
105 @return Memory address of allocated pages.
143 @param Memory A pointer to receive the base allocated memory
158 OUT EFI_PHYSICAL_ADDRESS *Memory
175 RequestedAddress = (UINTN)*Memory;
180 *Memory = InternalAllocMaxAddress (
185 if (*Memory == (UINTN)-1) {
190 *Memory
245 SmmFreePages( IN EFI_PHYSICAL_ADDRESS Memory, IN UINTN NumberOfPages ) argument
[all...]
H A DPiSmmCore.h254 @param Memory A pointer to receive the base allocated memory
269 OUT EFI_PHYSICAL_ADDRESS *Memory
275 @param Memory Base address of memory being freed
286 IN EFI_PHYSICAL_ADDRESS Memory,
629 @param Type Memory type.
630 @param Attributes Memory region state.
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Mem/
H A DImem.h81 @param Memory The base address to free
87 IN EFI_PHYSICAL_ADDRESS Memory,
H A DPage.c2 UEFI Memory page management functions.
182 // Memory map being altered so updated key
259 @return The Memory map descriptor dequed from the mFreeMemoryMapEntryList
804 // Inherit Attribute from the Memory Descriptor that is being clipped
1072 @param Memory A pointer to receive the base allocated memory
1075 @return Status. On success, Memory is filled in with the base address allocated
1089 IN OUT EFI_PHYSICAL_ADDRESS *Memory
1106 if (Memory == NULL) {
1121 if ((*Memory & (Alignment - 1)) != 0) {
1132 Start = *Memory;
1185 CoreFreePages( IN EFI_PHYSICAL_ADDRESS Memory, IN UINTN NumberOfPages ) argument
1588 CoreFreePoolPages( IN EFI_PHYSICAL_ADDRESS Memory, IN UINTN NumberOfPages ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/
H A DMatch.c23 @param[in] Memory The pointer to the buffer.
31 IN VOID *Memory,
38 if (*((UINT8 *) Memory + Index) != 0) {
30 IsMemoryZero( IN VOID *Memory, IN UINTN Size ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Memory/
H A DMemoryServices.c119 @param Memory Pointer to a physical address. On output, the address is set to the base
135 OUT EFI_PHYSICAL_ADDRESS *Memory
203 *Memory = *(FreeMemoryTop);
/vbox/src/VBox/Additions/common/VBoxGuest/
H A DVBoxGuest-win.cpp1145 LogFlowFunc(("Memory range: Base=%08x:%08x, length=%08x\n",
1146 pPartialData->u.Memory.Start.HighPart,
1147 pPartialData->u.Memory.Start.LowPart,
1148 pPartialData->u.Memory.Length));
1156 pDevExt->vmmDevPhysMemoryAddress = pPartialData->u.Memory.Start;
1157 pDevExt->vmmDevPhysMemoryLength = (ULONG)pPartialData->u.Memory.Length;
1160 pBaseAddress->RangeStart = pPartialData->u.Memory.Start;
1161 pBaseAddress->RangeLength = pPartialData->u.Memory.Length;
1165 LogFunc(("Memory range for VMMDev found! Base = %08x:%08x, Length = %08x\n",
1166 pPartialData->u.Memory
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/
H A DPeiServicesLib.h248 @param Memory Pointer of memory allocated.
261 OUT EFI_PHYSICAL_ADDRESS *Memory
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Framework/
H A DSmmCis.h81 @param Memory Pointer to a physical address. On input, the way in which
100 OUT EFI_PHYSICAL_ADDRESS *Memory
106 @param Memory The base physical address of the pages to be freed.
110 @retval EFI_INVALID_PARAMETER Memory is not a page-aligned address or NumberOfPages is invalid.
120 IN EFI_PHYSICAL_ADDRESS Memory,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesLib/
H A DPeiServicesLib.c343 @param Memory Pointer of memory allocated.
356 OUT EFI_PHYSICAL_ADDRESS *Memory
362 return (*PeiServices)->AllocatePages (PeiServices, MemoryType, Pages, Memory);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DUnload.c20 @param[in] Memory The memory type.
27 IN CONST EFI_MEMORY_TYPE Memory
33 switch (Memory) {
/vbox/src/VBox/Runtime/common/misc/
H A Dzero.asm3 ; IPRT - Zero Memory.
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Bus/Isa/IsaIoDxe/
H A DIsaIo.c209 Convert the Memory Information in ACPI descriptor to Memory ISA Attribute.
211 @param[in] Information The Memory Information in ACPI descriptor
213 @return UINT32 The Memory ISA Attribute
298 EFI_ACPI_32_BIT_MEMORY_RANGE_DESCRIPTOR *Memory; local
383 Memory = (EFI_ACPI_32_BIT_MEMORY_RANGE_DESCRIPTOR *) AcpiResource.LargeHeader;
384 if (Memory->Length != 0) {
387 IsaResource[Count].Attribute = IsaMemoryAttribute (Memory->Information);
388 IsaResource[Count].StartRange = Memory->BaseAddressMin;
389 IsaResource[Count].EndRange = Memory
[all...]

Completed in 86 milliseconds

12