Minor grammatical work--mostly adding periods. Items with ONLY period added did not have the heading date changed, but Items with content changes had heading copyright dates updated. Sending separately a list of files missing Doxygen @param and @return information. (PENDING)

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10597 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
myronporter 2010-06-24 20:11:34 +00:00
parent 127010dd96
commit 15c952e728
30 changed files with 248 additions and 248 deletions

View File

@ -8,7 +8,7 @@
# This program and the accompanying materials # This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License # 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 # which accompanies this distribution. The full text of the license may be found at
# http://opensource.org/licenses/bsd-license.php # http://opensource.org/licenses/bsd-license.php.
# THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, # THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
# WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. # WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
# #

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -37,9 +37,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
@param DestinationBuffer Pointer to the destination buffer to compare. @param DestinationBuffer A pointer to the destination buffer to compare.
@param SourceBuffer Pointer to the source buffer to compare. @param SourceBuffer A pointer to the source buffer to compare.
@param Length Number of bytes to compare. @param Length The number of bytes to compare.
@return 0 All Length bytes of the two buffers are identical. @return 0 All Length bytes of the two buffers are identical.
@retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first

View File

@ -3,11 +3,11 @@
out into its own source file so that it can be excluded from a build for a out into its own source file so that it can be excluded from a build for a
particular platform easily if an optimized version is desired. particular platform easily if an optimized version is desired.
Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -22,9 +22,9 @@
/** /**
Copy Length bytes from Source to Destination. Copy Length bytes from Source to Destination.
@param DestinationBuffer Target of copy @param DestinationBuffer The target of the copy request.
@param SourceBuffer Place to copy from @param SourceBuffer The place to copy from.
@param Length Number of bytes to copy @param Length The number of bytes to copy.
@return Destination @return Destination

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -35,9 +35,9 @@
If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
@param DestinationBuffer Pointer to the destination buffer of the memory copy. @param DestinationBuffer A pointer to the destination buffer of the memory copy.
@param SourceBuffer Pointer to the source buffer of the memory copy. @param SourceBuffer A pointer to the source buffer of the memory copy.
@param Length Number of bytes to copy from SourceBuffer to DestinationBuffer. @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
@return DestinationBuffer. @return DestinationBuffer.

View File

@ -6,11 +6,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -22,9 +22,9 @@
/** /**
Fills a target buffer with a 16-bit value, and returns the target buffer. Fills a target buffer with a 16-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 16-bit value to fill. @param Length The count of 16-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -46,9 +46,9 @@ InternalMemSetMem16 (
/** /**
Fills a target buffer with a 32-bit value, and returns the target buffer. Fills a target buffer with a 32-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 32-bit value to fill. @param Length The count of 32-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -70,9 +70,9 @@ InternalMemSetMem32 (
/** /**
Fills a target buffer with a 64-bit value, and returns the target buffer. Fills a target buffer with a 64-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 64-bit value to fill. @param Length The count of 64-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -95,7 +95,7 @@ InternalMemSetMem64 (
Set Buffer to 0 for Size bytes. Set Buffer to 0 for Size bytes.
@param Buffer Memory to set. @param Buffer Memory to set.
@param Length Number of bytes to set @param Length Number of bytes to set.
@return Buffer @return Buffer
@ -113,8 +113,8 @@ InternalMemZeroMem (
/** /**
Compares two memory buffers of a given length. Compares two memory buffers of a given length.
@param DestinationBuffer First memory buffer @param DestinationBuffer The first memory buffer.
@param SourceBuffer Second memory buffer @param SourceBuffer The second memory buffer.
@param Length Length of DestinationBuffer and SourceBuffer memory @param Length Length of DestinationBuffer and SourceBuffer memory
regions to compare. Must be non-zero. regions to compare. Must be non-zero.
@ -143,11 +143,11 @@ InternalMemCompareMem (
Scans a target buffer for an 8-bit value, and returns a pointer to the Scans a target buffer for an 8-bit value, and returns a pointer to the
matching 8-bit value in the target buffer. matching 8-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 8-bit value to scan. Must be non-zero. @param Length The count of 8-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -173,11 +173,11 @@ InternalMemScanMem8 (
Scans a target buffer for a 16-bit value, and returns a pointer to the Scans a target buffer for a 16-bit value, and returns a pointer to the
matching 16-bit value in the target buffer. matching 16-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 16-bit value to scan. Must be non-zero. @param Length The count of 16-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -203,11 +203,11 @@ InternalMemScanMem16 (
Scans a target buffer for a 32-bit value, and returns a pointer to the Scans a target buffer for a 32-bit value, and returns a pointer to the
matching 32-bit value in the target buffer. matching 32-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 32-bit value to scan. Must be non-zero. @param Length The count of 32-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -233,11 +233,11 @@ InternalMemScanMem32 (
Scans a target buffer for a 64-bit value, and returns a pointer to the Scans a target buffer for a 64-bit value, and returns a pointer to the
matching 64-bit value in the target buffer. matching 64-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 64-bit value to scan. Must be non-zero. @param Length The count of 64-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -34,8 +34,8 @@
If DestinationGuid is NULL, then ASSERT(). If DestinationGuid is NULL, then ASSERT().
If SourceGuid is NULL, then ASSERT(). If SourceGuid is NULL, then ASSERT().
@param DestinationGuid Pointer to the destination GUID. @param DestinationGuid A pointer to the destination GUID.
@param SourceGuid Pointer to the source GUID. @param SourceGuid A pointer to the source GUID.
@return DestinationGuid. @return DestinationGuid.
@ -109,9 +109,9 @@ CompareGuid (
If Length is not aligned on a 128-bit boundary, then ASSERT(). If Length is not aligned on a 128-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Guid Value to search for in the target buffer. @param Guid The value to search for in the target buffer.
@return A pointer to the matching Guid in the target buffer or NULL otherwise. @return A pointer to the matching Guid in the target buffer or NULL otherwise.

View File

@ -9,11 +9,11 @@
BaseMemoryLibOptDxe BaseMemoryLibOptDxe
BaseMemoryLibOptPei BaseMemoryLibOptPei
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -49,9 +49,9 @@ InternalMemCopyMem (
/** /**
Set Buffer to Value for Size bytes. Set Buffer to Value for Size bytes.
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set @param Length The number of bytes to set
@param Value Value of the set operation. @param Value The value of the set operation.
@return Buffer @return Buffer
@ -67,9 +67,9 @@ InternalMemSetMem (
/** /**
Fills a target buffer with a 16-bit value, and returns the target buffer. Fills a target buffer with a 16-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 16-bit value to fill. @param Length The count of 16-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -85,9 +85,9 @@ InternalMemSetMem16 (
/** /**
Fills a target buffer with a 32-bit value, and returns the target buffer. Fills a target buffer with a 32-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 32-bit value to fill. @param Length The count of 32-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -103,9 +103,9 @@ InternalMemSetMem32 (
/** /**
Fills a target buffer with a 64-bit value, and returns the target buffer. Fills a target buffer with a 64-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 64-bit value to fill. @param Length The count of 64-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -121,8 +121,8 @@ InternalMemSetMem64 (
/** /**
Set Buffer to 0 for Size bytes. Set Buffer to 0 for Size bytes.
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set @param Length The number of bytes to set.
@return Buffer @return Buffer
@ -137,9 +137,9 @@ InternalMemZeroMem (
/** /**
Compares two memory buffers of a given length. Compares two memory buffers of a given length.
@param DestinationBuffer First memory buffer @param DestinationBuffer The first memory buffer.
@param SourceBuffer Second memory buffer @param SourceBuffer The second memory buffer.
@param Length Length of DestinationBuffer and SourceBuffer memory @param Length The length of DestinationBuffer and SourceBuffer memory
regions to compare. Must be non-zero. regions to compare. Must be non-zero.
@return 0 All Length bytes of the two buffers are identical. @return 0 All Length bytes of the two buffers are identical.
@ -159,11 +159,11 @@ InternalMemCompareMem (
Scans a target buffer for an 8-bit value, and returns a pointer to the Scans a target buffer for an 8-bit value, and returns a pointer to the
matching 8-bit value in the target buffer. matching 8-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 8-bit value to scan. Must be non-zero. @param Length The count of 8-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -178,11 +178,11 @@ InternalMemScanMem8 (
Scans a target buffer for a 16-bit value, and returns a pointer to the Scans a target buffer for a 16-bit value, and returns a pointer to the
matching 16-bit value in the target buffer. matching 16-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 16-bit value to scan. Must be non-zero. @param Length The count of 16-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -197,11 +197,11 @@ InternalMemScanMem16 (
Scans a target buffer for a 32-bit value, and returns a pointer to the Scans a target buffer for a 32-bit value, and returns a pointer to the
matching 32-bit value in the target buffer. matching 32-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 32-bit value to scan. Must be non-zero. @param Length The count of 32-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -216,11 +216,11 @@ InternalMemScanMem32 (
Scans a target buffer for a 64-bit value, and returns a pointer to the Scans a target buffer for a 64-bit value, and returns a pointer to the
matching 64-bit value in the target buffer. matching 64-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 64-bit value to scan. Must be non-zero. @param Length The count of 64-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The calue to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence, or NULL if not found.
**/ **/
CONST VOID * CONST VOID *

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -39,9 +39,9 @@
If Length is not aligned on a 16-bit boundary, then ASSERT(). If Length is not aligned on a 16-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -38,9 +38,9 @@
If Length is not aligned on a 32-bit boundary, then ASSERT(). If Length is not aligned on a 32-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -39,9 +39,9 @@
If Length is not aligned on a 64-bit boundary, then ASSERT(). If Length is not aligned on a 64-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -12,7 +12,7 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
@ -37,11 +37,11 @@
If Length > 0 and Buffer is NULL, then ASSERT(). If Length > 0 and Buffer is NULL, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer, or NULL otherwise.
**/ **/
VOID * VOID *
@ -75,11 +75,11 @@ ScanMem8 (
If Length is not aligned on a UINTN boundary, then ASSERT(). If Length is not aligned on a UINTN boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer, or NULL otherwise.
**/ **/
VOID * VOID *

View File

@ -8,7 +8,7 @@
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -23,9 +23,9 @@
/** /**
Set Buffer to Value for Size bytes. Set Buffer to Value for Size bytes.
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set @param Length The number of bytes to set.
@param Value Value of the set operation. @param Value The value of the set operation.
@return Buffer @return Buffer

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 16-bit boundary, then ASSERT(). If Buffer is not aligned on a 16-bit boundary, then ASSERT().
If Length is not aligned on a 16-bit boundary, then ASSERT(). If Length is not aligned on a 16-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 32-bit boundary, then ASSERT(). If Buffer is not aligned on a 32-bit boundary, then ASSERT().
If Length is not aligned on a 32-bit boundary, then ASSERT(). If Length is not aligned on a 32-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 64-bit boundary, then ASSERT(). If Buffer is not aligned on a 64-bit boundary, then ASSERT().
If Length is not aligned on a 64-bit boundary, then ASSERT(). If Length is not aligned on a 64-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -32,9 +32,9 @@
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set. @param Length The number of bytes to set.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.
@ -68,9 +68,9 @@ SetMem (
If Buffer is not aligned on a UINTN boundary, then ASSERT(). If Buffer is not aligned on a UINTN boundary, then ASSERT().
If Length is not aligned on a UINTN boundary, then ASSERT(). If Length is not aligned on a UINTN boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -33,8 +33,8 @@
If Length > 0 and Buffer is NULL, then ASSERT(). If Length > 0 and Buffer is NULL, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to fill with zeros. @param Buffer The pointer to the target buffer to fill with zeros.
@param Length Number of bytes in Buffer to fill with zeros. @param Length The number of bytes in Buffer to fill with zeros.
@return Buffer. @return Buffer.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -37,9 +37,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
@param DestinationBuffer Pointer to the destination buffer to compare. @param DestinationBuffer The pointer to the destination buffer to compare.
@param SourceBuffer Pointer to the source buffer to compare. @param SourceBuffer The pointer to the source buffer to compare.
@param Length Number of bytes to compare. @param Length The number of bytes to compare.
@return 0 All Length bytes of the two buffers are identical. @return 0 All Length bytes of the two buffers are identical.
@retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -35,9 +35,9 @@
If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
@param DestinationBuffer Pointer to the destination buffer of the memory copy. @param DestinationBuffer The pointer to the destination buffer of the memory copy.
@param SourceBuffer Pointer to the source buffer of the memory copy. @param SourceBuffer The pointer to the source buffer of the memory copy.
@param Length Number of bytes to copy from SourceBuffer to DestinationBuffer. @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
@return DestinationBuffer. @return DestinationBuffer.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -34,8 +34,8 @@
If DestinationGuid is NULL, then ASSERT(). If DestinationGuid is NULL, then ASSERT().
If SourceGuid is NULL, then ASSERT(). If SourceGuid is NULL, then ASSERT().
@param DestinationGuid Pointer to the destination GUID. @param DestinationGuid The pointer to the destination GUID.
@param SourceGuid Pointer to the source GUID. @param SourceGuid The pointer to the source GUID.
@return DestinationGuid. @return DestinationGuid.
@ -109,9 +109,9 @@ CompareGuid (
If Length is not aligned on a 128-bit boundary, then ASSERT(). If Length is not aligned on a 128-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Guid Value to search for in the target buffer. @param Guid The value to search for in the target buffer.
@return A pointer to the matching Guid in the target buffer or NULL otherwise. @return A pointer to the matching Guid in the target buffer or NULL otherwise.

View File

@ -9,11 +9,11 @@
BaseMemoryLibOptDxe BaseMemoryLibOptDxe
BaseMemoryLibOptPei BaseMemoryLibOptPei
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -31,9 +31,9 @@
/** /**
Copy Length bytes from Source to Destination. Copy Length bytes from Source to Destination.
@param DestinationBuffer Target of copy @param DestinationBuffer The target of the copy request.
@param SourceBuffer Place to copy from @param SourceBuffer The place to copy from.
@param Length Number of bytes to copy @param Length The number of bytes to copy
@return Destination @return Destination
@ -49,9 +49,9 @@ InternalMemCopyMem (
/** /**
Set Buffer to Value for Size bytes. Set Buffer to Value for Size bytes.
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set @param Length The number of bytes to set
@param Value Value of the set operation. @param Value The value of the set operation.
@return Buffer @return Buffer
@ -67,9 +67,9 @@ InternalMemSetMem (
/** /**
Fills a target buffer with a 16-bit value, and returns the target buffer. Fills a target buffer with a 16-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 16-bit value to fill. @param Length The count of 16-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -85,9 +85,9 @@ InternalMemSetMem16 (
/** /**
Fills a target buffer with a 32-bit value, and returns the target buffer. Fills a target buffer with a 32-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Count of 32-bit value to fill. @param Length The count of 32-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -103,9 +103,9 @@ InternalMemSetMem32 (
/** /**
Fills a target buffer with a 64-bit value, and returns the target buffer. Fills a target buffer with a 64-bit value, and returns the target buffer.
@param Buffer Pointer to the target buffer to fill. @param Buffer Teh pointer to the target buffer to fill.
@param Length Count of 64-bit value to fill. @param Length The count of 64-bit value to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer @return Buffer
@ -121,8 +121,8 @@ InternalMemSetMem64 (
/** /**
Set Buffer to 0 for Size bytes. Set Buffer to 0 for Size bytes.
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set @param Length The number of bytes to set.
@return Buffer @return Buffer
@ -137,9 +137,9 @@ InternalMemZeroMem (
/** /**
Compares two memory buffers of a given length. Compares two memory buffers of a given length.
@param DestinationBuffer First memory buffer @param DestinationBuffer The first memory buffer.
@param SourceBuffer Second memory buffer @param SourceBuffer The second memory buffer.
@param Length Length of DestinationBuffer and SourceBuffer memory @param Length The length of DestinationBuffer and SourceBuffer memory
regions to compare. Must be non-zero. regions to compare. Must be non-zero.
@return 0 All Length bytes of the two buffers are identical. @return 0 All Length bytes of the two buffers are identical.
@ -159,11 +159,11 @@ InternalMemCompareMem (
Scans a target buffer for an 8-bit value, and returns a pointer to the Scans a target buffer for an 8-bit value, and returns a pointer to the
matching 8-bit value in the target buffer. matching 8-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 8-bit value to scan. Must be non-zero. @param Length The count of 8-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -178,11 +178,11 @@ InternalMemScanMem8 (
Scans a target buffer for a 16-bit value, and returns a pointer to the Scans a target buffer for a 16-bit value, and returns a pointer to the
matching 16-bit value in the target buffer. matching 16-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 16-bit value to scan. Must be non-zero. @param Length The count of 16-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -197,11 +197,11 @@ InternalMemScanMem16 (
Scans a target buffer for a 32-bit value, and returns a pointer to the Scans a target buffer for a 32-bit value, and returns a pointer to the
matching 32-bit value in the target buffer. matching 32-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 32-bit value to scan. Must be non-zero. @param Length The count of 32-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence or NULL if not found.
**/ **/
CONST VOID * CONST VOID *
@ -216,11 +216,11 @@ InternalMemScanMem32 (
Scans a target buffer for a 64-bit value, and returns a pointer to the Scans a target buffer for a 64-bit value, and returns a pointer to the
matching 64-bit value in the target buffer. matching 64-bit value in the target buffer.
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Count of 64-bit value to scan. Must be non-zero. @param Length The count of 64-bit value to scan. Must be non-zero.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return Pointer to the first occurrence or NULL if not found. @return The pointer to the first occurrence or NULL if not found.
**/ **/
CONST VOID * CONST VOID *

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -39,9 +39,9 @@
If Length is not aligned on a 16-bit boundary, then ASSERT(). If Length is not aligned on a 16-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -38,9 +38,9 @@
If Length is not aligned on a 32-bit boundary, then ASSERT(). If Length is not aligned on a 32-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value Thevalue to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -39,9 +39,9 @@
If Length is not aligned on a 64-bit boundary, then ASSERT(). If Length is not aligned on a 64-bit boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -37,9 +37,9 @@
If Length > 0 and Buffer is NULL, then ASSERT(). If Length > 0 and Buffer is NULL, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.
@ -75,9 +75,9 @@ ScanMem8 (
If Length is not aligned on a UINTN boundary, then ASSERT(). If Length is not aligned on a UINTN boundary, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to scan. @param Buffer The pointer to the target buffer to scan.
@param Length Number of bytes in Buffer to scan. @param Length The number of bytes in Buffer to scan.
@param Value Value to search for in the target buffer. @param Value The value to search for in the target buffer.
@return A pointer to the matching byte in the target buffer or NULL otherwise. @return A pointer to the matching byte in the target buffer or NULL otherwise.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 16-bit boundary, then ASSERT(). If Buffer is not aligned on a 16-bit boundary, then ASSERT().
If Length is not aligned on a 16-bit boundary, then ASSERT(). If Length is not aligned on a 16-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 32-bit boundary, then ASSERT(). If Buffer is not aligned on a 32-bit boundary, then ASSERT().
If Length is not aligned on a 32-bit boundary, then ASSERT(). If Length is not aligned on a 32-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -11,11 +11,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -36,9 +36,9 @@
If Buffer is not aligned on a 64-bit boundary, then ASSERT(). If Buffer is not aligned on a 64-bit boundary, then ASSERT().
If Length is not aligned on a 64-bit boundary, then ASSERT(). If Length is not aligned on a 64-bit boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -32,9 +32,9 @@
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Memory to set. @param Buffer The memory to set.
@param Length Number of bytes to set. @param Length The number of bytes to set.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.
@ -68,9 +68,9 @@ SetMem (
If Buffer is not aligned on a UINTN boundary, then ASSERT(). If Buffer is not aligned on a UINTN boundary, then ASSERT().
If Length is not aligned on a UINTN boundary, then ASSERT(). If Length is not aligned on a UINTN boundary, then ASSERT().
@param Buffer Pointer to the target buffer to fill. @param Buffer The pointer to the target buffer to fill.
@param Length Number of bytes in Buffer to fill. @param Length The number of bytes in Buffer to fill.
@param Value Value with which to fill Length bytes of Buffer. @param Value The value with which to fill Length bytes of Buffer.
@return Buffer. @return Buffer.

View File

@ -12,11 +12,11 @@
PeiMemoryLib PeiMemoryLib
UefiMemoryLib UefiMemoryLib
Copyright (c) 2006 - 2009, Intel Corporation. All rights reserved.<BR> Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
This program and the accompanying materials This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License 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 which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-license.php http://opensource.org/licenses/bsd-license.php.
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS, THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
@ -33,8 +33,8 @@
If Length > 0 and Buffer is NULL, then ASSERT(). If Length > 0 and Buffer is NULL, then ASSERT().
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT(). If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
@param Buffer Pointer to the target buffer to fill with zeros. @param Buffer The pointer to the target buffer to fill with zeros.
@param Length Number of bytes in Buffer to fill with zeros. @param Length The number of bytes in Buffer to fill with zeros.
@return Buffer. @return Buffer.