X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FLibrary%2FBaseLib%2FUnaligned.c;h=860475b940593e48f57114dca4420d9c05c1ddb1;hb=80151e53310a3ef57e85ac1efc4f843d0a1c0824;hp=935e1693002660de31e464892f99a07650dbccc4;hpb=f734a10ab104f1072f94cab66a5489e0fd8fce8a;p=mirror_edk2.git diff --git a/MdePkg/Library/BaseLib/Unaligned.c b/MdePkg/Library/BaseLib/Unaligned.c index 935e169300..860475b940 100644 --- a/MdePkg/Library/BaseLib/Unaligned.c +++ b/MdePkg/Library/BaseLib/Unaligned.c @@ -1,7 +1,7 @@ /** @file Unaligned access functions of BaseLib. - Copyright (c) 2006, Intel Corporation + Copyright (c) 2006 - 2008, Intel Corporation All rights reserved. This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -10,14 +10,10 @@ THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. - Module Name: Unaligned.c - **/ -// -// Include common header file for this module. -// -#include + +#include "BaseLibInternals.h" /** @@ -30,13 +26,13 @@ @param Buffer Pointer to a 16-bit value that may be unaligned. - @return *Uint16 + @return The 16-bit value read from Buffer. **/ UINT16 EFIAPI ReadUnaligned16 ( - IN CONST UINT16 *Buffer + IN CONST UINT16 *Buffer ) { ASSERT (Buffer != NULL); @@ -56,14 +52,14 @@ ReadUnaligned16 ( @param Buffer Pointer to a 16-bit value that may be unaligned. @param Value 16-bit value to write to Buffer. - @return Value + @return The 16-bit value to write to Buffer. **/ UINT16 EFIAPI WriteUnaligned16 ( - OUT UINT16 *Buffer, - IN UINT16 Value + OUT UINT16 *Buffer, + IN UINT16 Value ) { ASSERT (Buffer != NULL); @@ -81,13 +77,13 @@ WriteUnaligned16 ( @param Buffer Pointer to a 24-bit value that may be unaligned. - @return The value read. + @return The 24-bit value read from Buffer. **/ UINT32 EFIAPI ReadUnaligned24 ( - IN CONST UINT32 *Buffer + IN CONST UINT32 *Buffer ) { ASSERT (Buffer != NULL); @@ -107,14 +103,14 @@ ReadUnaligned24 ( @param Buffer Pointer to a 24-bit value that may be unaligned. @param Value 24-bit value to write to Buffer. - @return The value written. + @return The 24-bit value to write to Buffer. **/ UINT32 EFIAPI WriteUnaligned24 ( - OUT UINT32 *Buffer, - IN UINT32 Value + OUT UINT32 *Buffer, + IN UINT32 Value ) { ASSERT (Buffer != NULL); @@ -133,13 +129,13 @@ WriteUnaligned24 ( @param Buffer Pointer to a 32-bit value that may be unaligned. - @return *Uint32 + @return The 32-bit value read from Buffer. **/ UINT32 EFIAPI ReadUnaligned32 ( - IN CONST UINT32 *Buffer + IN CONST UINT32 *Buffer ) { ASSERT (Buffer != NULL); @@ -159,14 +155,14 @@ ReadUnaligned32 ( @param Buffer Pointer to a 32-bit value that may be unaligned. @param Value 32-bit value to write to Buffer. - @return Value + @return The 32-bit value to write to Buffer. **/ UINT32 EFIAPI WriteUnaligned32 ( - OUT UINT32 *Buffer, - IN UINT32 Value + OUT UINT32 *Buffer, + IN UINT32 Value ) { ASSERT (Buffer != NULL); @@ -184,13 +180,13 @@ WriteUnaligned32 ( @param Buffer Pointer to a 64-bit value that may be unaligned. - @return *Uint64 + @return The 64-bit value read from Buffer. **/ UINT64 EFIAPI ReadUnaligned64 ( - IN CONST UINT64 *Buffer + IN CONST UINT64 *Buffer ) { ASSERT (Buffer != NULL); @@ -210,14 +206,14 @@ ReadUnaligned64 ( @param Buffer Pointer to a 64-bit value that may be unaligned. @param Value 64-bit value to write to Buffer. - @return Value + @return The 64-bit value to write to Buffer. **/ UINT64 EFIAPI WriteUnaligned64 ( - OUT UINT64 *Buffer, - IN UINT64 Value + OUT UINT64 *Buffer, + IN UINT64 Value ) { ASSERT (Buffer != NULL);