VirtualBox

Ignore:
Timestamp:
Oct 29, 2015 4:30:44 AM (9 years ago)
Author:
vboxsync
Message:

EFI/Firmware: Merged in the svn:eol-style, svn:mime-type and trailing whitespace cleanup that was done after the initial UDK2014.SP1 import: svn merge /vendor/edk2/UDK2014.SP1 /vendor/edk2/current .

Location:
trunk/src/VBox/Devices/EFI/Firmware
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/EFI/Firmware

  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/BaseMemoryLib.inf

    r58459 r58466  
    2323  MODULE_TYPE                    = BASE
    2424  VERSION_STRING                 = 1.0
    25   LIBRARY_CLASS                  = BaseMemoryLib 
     25  LIBRARY_CLASS                  = BaseMemoryLib
    2626
    2727
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/CompareMemWrapper.c

    r48674 r58466  
    3232  value returned is the first mismatched byte in SourceBuffer subtracted from the first
    3333  mismatched byte in DestinationBuffer.
    34  
     34
    3535  If Length > 0 and DestinationBuffer is NULL, then ASSERT().
    3636  If Length > 0 and SourceBuffer is NULL, then ASSERT().
     
    4545  @retval Non-zero          The first mismatched byte in SourceBuffer subtracted from the first
    4646                            mismatched byte in DestinationBuffer.
    47                            
     47
    4848**/
    4949INTN
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/CopyMemWrapper.c

    r48674 r58466  
    33
    44  The following BaseMemoryLib instances contain the same copy of this file:
    5  
     5
    66    BaseMemoryLib
    77    BaseMemoryLibMmx
     
    3232  DestinationBuffer.  The implementation must be reentrant, and it must handle the case
    3333  where SourceBuffer overlaps DestinationBuffer.
    34  
     34
    3535  If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
    3636  If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/MemLibGuid.c

    r48674 r58466  
    33
    44  The following BaseMemoryLib instances contain the same copy of this file:
    5  
     5
    66    BaseMemoryLib
    77    BaseMemoryLibMmx
     
    3131  This function copies the contents of the 128-bit GUID specified by SourceGuid to
    3232  DestinationGuid, and returns DestinationGuid.
    33  
     33
    3434  If DestinationGuid is NULL, then ASSERT().
    3535  If SourceGuid is NULL, then ASSERT().
     
    6464  This function compares Guid1 to Guid2.  If the GUIDs are identical then TRUE is returned.
    6565  If there are any bit differences in the two GUIDs, then FALSE is returned.
    66  
     66
    6767  If Guid1 is NULL, then ASSERT().
    6868  If Guid2 is NULL, then ASSERT().
     
    104104  GUID in the target buffer is returned.  If no match is found, then NULL is returned.
    105105  If Length is 0, then NULL is returned.
    106  
     106
    107107  If Length > 0 and Buffer is NULL, then ASSERT().
    108108  If Buffer is not aligned on a 32-bit boundary, then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ScanMem16Wrapper.c

    r48674 r58466  
    3434  then a pointer to the matching byte in the target buffer is returned.  If no match is found,
    3535  then NULL is returned.  If Length is 0, then NULL is returned.
    36  
     36
    3737  If Length > 0 and Buffer is NULL, then ASSERT().
    3838  If Buffer is not aligned on a 16-bit boundary, then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ScanMem32Wrapper.c

    r48674 r58466  
    3333  then a pointer to the matching byte in the target buffer is returned.  If no match is found,
    3434  then NULL is returned.  If Length is 0, then NULL is returned.
    35  
     35
    3636  If Length > 0 and Buffer is NULL, then ASSERT().
    3737  If Buffer is not aligned on a 32-bit boundary, then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ScanMem64Wrapper.c

    r48674 r58466  
    3434  then a pointer to the matching byte in the target buffer is returned.  If no match is found,
    3535  then NULL is returned.  If Length is 0, then NULL is returned.
    36  
     36
    3737  If Length > 0 and Buffer is NULL, then ASSERT().
    3838  If Buffer is not aligned on a 64-bit boundary, then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ScanMem8Wrapper.c

    r48674 r58466  
    3434  then a pointer to the matching byte in the target buffer is returned.  If no match is found,
    3535  then NULL is returned.  If Length is 0, then NULL is returned.
    36  
     36
    3737  If Length > 0 and Buffer is NULL, then ASSERT().
    3838  If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
     
    5858  ASSERT (Buffer != NULL);
    5959  ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
    60  
     60
    6161  return (VOID*)InternalMemScanMem8 (Buffer, Length, Value);
    6262}
    6363
    6464/**
    65   Scans a target buffer for a UINTN sized value, and returns a pointer to the matching 
     65  Scans a target buffer for a UINTN sized value, and returns a pointer to the matching
    6666  UINTN sized value in the target buffer.
    6767
     
    7070  then a pointer to the matching byte in the target buffer is returned.  If no match is found,
    7171  then NULL is returned.  If Length is 0, then NULL is returned.
    72  
     72
    7373  If Length > 0 and Buffer is NULL, then ASSERT().
    7474  If Buffer is not aligned on a UINTN boundary, then ASSERT().
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/SetMemWrapper.c

    r48674 r58466  
    3030
    3131  This function fills Length bytes of Buffer with Value, and returns Buffer.
    32  
     32
    3333  If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
    3434
  • trunk/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLib/ZeroMemWrapper.c

    r48674 r58466  
    1212    PeiMemoryLib
    1313    UefiMemoryLib
    14    
     14
    1515  Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
    1616  This program and the accompanying materials
     
    3030
    3131  This function fills Length bytes of Buffer with zeros, and returns Buffer.
    32  
     32
    3333  If Length > 0 and Buffer is NULL, then ASSERT().
    3434  If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette