Changeset 58459 in vbox for trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib
- Timestamp:
- Oct 28, 2015 8:17:18 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/EFI/Firmware
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/Firmware ¶
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib/MemoryAllocationLib.c ¶
r48674 r58459 3 3 on boot services for Dxe phase drivers. 4 4 5 Copyright (c) 2006 - 20 09, Intel Corporation. All rights reserved.<BR>5 Copyright (c) 2006 - 2013, Intel Corporation. All rights reserved.<BR> 6 6 This program and the accompanying materials 7 7 are licensed and made available under the terms and conditions of the BSD License … … 161 161 NULL is returned. 162 162 If Alignment is not a power of two and Alignment is not zero, then ASSERT(). 163 If Pages plus EFI_SIZE_TO_PAGES (Alignment) overflows, then ASSERT(). 163 164 164 165 @param MemoryType The type of memory to allocate. … … 247 248 248 249 If Alignment is not a power of two and Alignment is not zero, then ASSERT(). 250 If Pages plus EFI_SIZE_TO_PAGES (Alignment) overflows, then ASSERT(). 249 251 250 252 @param Pages The number of 4 KB pages to allocate. … … 274 276 275 277 If Alignment is not a power of two and Alignment is not zero, then ASSERT(). 278 If Pages plus EFI_SIZE_TO_PAGES (Alignment) overflows, then ASSERT(). 276 279 277 280 @param Pages The number of 4 KB pages to allocate. … … 301 304 302 305 If Alignment is not a power of two and Alignment is not zero, then ASSERT(). 306 If Pages plus EFI_SIZE_TO_PAGES (Alignment) overflows, then ASSERT(). 303 307 304 308 @param Pages The number of 4 KB pages to allocate. -
trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiMemoryAllocationLib/UefiMemoryAllocationLib.inf ¶
r48674 r58459 5 5 # and free memory. 6 6 # 7 # Copyright (c) 2007 - 201 0, Intel Corporation. All rights reserved.<BR>7 # Copyright (c) 2007 - 2014, Intel Corporation. All rights reserved.<BR> 8 8 # 9 9 # This program and the accompanying materials … … 20 20 INF_VERSION = 0x00010005 21 21 BASE_NAME = UefiMemoryAllocationLib 22 MODULE_UNI_FILE = UefiMemoryAllocationLib.uni 22 23 FILE_GUID = 4674739d-3195-4fb2-8094-ac1d22d00194 23 24 MODULE_TYPE = UEFI_DRIVER … … 39 40 BaseMemoryLib 40 41 UefiBootServicesTableLib 42
Note:
See TracChangeset
for help on using the changeset viewer.