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

/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/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/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/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...]
/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...]
/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...]
/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/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...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Mem/
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/Graphics/shaderlib/wine/include/
H A Drpcndr.h206 unsigned char *Memory; member in struct:_MIDL_STUB_MESSAGE
H A Ddbghelp.h750 MINIDUMP_LOCATION_DESCRIPTOR Memory; member in struct:_MINIDUMP_MEMORY_DESCRIPTOR
H A Dtwain.h297 TW_UINT32 BytesWritten; /* How many bytes written in Memory */
298 TW_MEMORY Memory; /* Mem struct used to pass actual image data */ member in struct:__anon13859
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Drpcndr.h191 unsigned char *Memory; member in struct:_MIDL_STUB_MESSAGE
H A Ddbghelp.h690 MINIDUMP_LOCATION_DESCRIPTOR Memory; member in struct:_MINIDUMP_MEMORY_DESCRIPTOR
H A Dtwain.h306 TW_UINT32 BytesWritten; /* How many bytes written in Memory */
307 TW_MEMORY Memory; /* Mem struct used to pass actual image data */ member in struct:__anon1215
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/ddk/
H A Dwdm.h658 } Memory; member in union:_IO_RESOURCE_DESCRIPTOR::__anon13405
787 } Memory; member in union:_CM_PARTIAL_RESOURCE_DESCRIPTOR::__anon13415
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/ddk/
H A Dwdm.h644 } Memory; member in union:_IO_RESOURCE_DESCRIPTOR::__anon802
773 } Memory; member in union:_CM_PARTIAL_RESOURCE_DESCRIPTOR::__anon812

Completed in 104 milliseconds