summaryrefslogtreecommitdiffstats
path: root/MdePkg/Library/PeiMemoryLib
diff options
context:
space:
mode:
authormyronporter <myronporter@6f19259b-4bc3-4df7-8a09-765794883524>2010-06-30 00:13:25 +0000
committermyronporter <myronporter@6f19259b-4bc3-4df7-8a09-765794883524>2010-06-30 00:13:25 +0000
commit58380e9c6174f23df78f777b4209c0fd75245cda (patch)
treea13a3c7c1bd697268c1742659d7148a5d76a55da /MdePkg/Library/PeiMemoryLib
parent3b33c6d65d88da47fe059eff5cd92b39b6d0f42e (diff)
downloadedk2-58380e9c6174f23df78f777b4209c0fd75245cda.tar.gz
edk2-58380e9c6174f23df78f777b4209c0fd75245cda.tar.bz2
edk2-58380e9c6174f23df78f777b4209c0fd75245cda.zip
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@10615 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/PeiMemoryLib')
-rw-r--r--MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c2
-rw-r--r--MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c2
-rw-r--r--MdePkg/Library/PeiMemoryLib/MemLib.c4
-rw-r--r--MdePkg/Library/PeiMemoryLib/MemLibGeneric.c26
-rw-r--r--MdePkg/Library/PeiMemoryLib/MemLibGuid.c2
-rw-r--r--MdePkg/Library/PeiMemoryLib/MemLibInternals.h20
-rw-r--r--MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c2
-rw-r--r--MdePkg/Library/PeiMemoryLib/SetMemWrapper.c4
8 files changed, 31 insertions, 31 deletions
diff --git a/MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c b/MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c
index 3e74647aa3..f525c17bae 100644
--- a/MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c
+++ b/MdePkg/Library/PeiMemoryLib/CompareMemWrapper.c
@@ -11,7 +11,7 @@
PeiMemoryLib
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
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
diff --git a/MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c b/MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c
index 21ea2d4ef4..9b76f0f1e1 100644
--- a/MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c
+++ b/MdePkg/Library/PeiMemoryLib/CopyMemWrapper.c
@@ -12,7 +12,7 @@
PeiMemoryLib
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
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
diff --git a/MdePkg/Library/PeiMemoryLib/MemLib.c b/MdePkg/Library/PeiMemoryLib/MemLib.c
index fc86964b18..4f1f01749c 100644
--- a/MdePkg/Library/PeiMemoryLib/MemLib.c
+++ b/MdePkg/Library/PeiMemoryLib/MemLib.c
@@ -1,7 +1,7 @@
/** @file
Base Memory Library functions implementation bases on PeiServcie.
- 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
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
@@ -48,7 +48,7 @@ InternalMemCopyMem (
This function wraps the gPS->SetMem ().
@param Buffer Memory to set.
- @param Size The number of bytes to set.
+ @param Size The number of bytes to set.
@param Value Value of the set operation.
@return Buffer.
diff --git a/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c b/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
index f68272f2ae..db56b503d5 100644
--- a/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
+++ b/MdePkg/Library/PeiMemoryLib/MemLibGeneric.c
@@ -6,7 +6,7 @@
PeiMemoryLib
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
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
@@ -26,7 +26,7 @@
@param Length The count of 16-bit value to fill.
@param Value The value with which to fill Length bytes of Buffer.
- @return Buffer
+ @return Buffer.
**/
VOID *
@@ -50,7 +50,7 @@ InternalMemSetMem16 (
@param Length The count of 32-bit value to fill.
@param Value The value with which to fill Length bytes of Buffer.
- @return Buffer
+ @return Buffer.
**/
VOID *
@@ -74,7 +74,7 @@ InternalMemSetMem32 (
@param Length The count of 64-bit value to fill.
@param Value The value with which to fill Length bytes of Buffer.
- @return Buffer
+ @return Buffer.
**/
VOID *
@@ -94,10 +94,10 @@ InternalMemSetMem64 (
/**
Set Buffer to 0 for Size bytes.
- @param Buffer Memory to set.
+ @param Buffer The memory to set.
@param Length The number of bytes to set
- @return Buffer
+ @return Buffer.
**/
VOID *
@@ -113,9 +113,9 @@ InternalMemZeroMem (
/**
Compares two memory buffers of a given length.
- @param DestinationBuffer First memory buffer
- @param SourceBuffer Second memory buffer
- @param Length Length of DestinationBuffer and SourceBuffer memory
+ @param DestinationBuffer The first memory buffer
+ @param SourceBuffer The second memory buffer
+ @param Length The length of DestinationBuffer and SourceBuffer memory
regions to compare. Must be non-zero.
@return 0 All Length bytes of the two buffers are identical.
@@ -147,7 +147,7 @@ InternalMemCompareMem (
@param Length The count of 8-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -177,7 +177,7 @@ InternalMemScanMem8 (
@param Length The count of 16-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -207,7 +207,7 @@ InternalMemScanMem16 (
@param Length The count of 32-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -237,7 +237,7 @@ InternalMemScanMem32 (
@param Length The count of 64-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
diff --git a/MdePkg/Library/PeiMemoryLib/MemLibGuid.c b/MdePkg/Library/PeiMemoryLib/MemLibGuid.c
index 6f6edd0d8f..c04af6e112 100644
--- a/MdePkg/Library/PeiMemoryLib/MemLibGuid.c
+++ b/MdePkg/Library/PeiMemoryLib/MemLibGuid.c
@@ -12,7 +12,7 @@
PeiMemoryLib
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
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
diff --git a/MdePkg/Library/PeiMemoryLib/MemLibInternals.h b/MdePkg/Library/PeiMemoryLib/MemLibInternals.h
index 131d17d26e..8a1e1dff90 100644
--- a/MdePkg/Library/PeiMemoryLib/MemLibInternals.h
+++ b/MdePkg/Library/PeiMemoryLib/MemLibInternals.h
@@ -1,7 +1,7 @@
/** @file
Declaration of internal functions for Base Memory Library.
- 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
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
@@ -47,7 +47,7 @@ InternalMemCopyMem (
This function wraps the (*PeiServices)->SetMem ().
- @param Buffer Memory to set.
+ @param Buffer The memory to set.
@param Size The number of bytes to set.
@param Value Value of the set operation.
@@ -119,7 +119,7 @@ InternalMemSetMem64 (
/**
Set Buffer to 0 for Size bytes.
- @param Buffer Memory to set.
+ @param Buffer The memory to set.
@param Length The number of bytes to set
@return Buffer
@@ -135,9 +135,9 @@ InternalMemZeroMem (
/**
Compares two memory buffers of a given length.
- @param DestinationBuffer First memory buffer
- @param SourceBuffer Second memory buffer
- @param Length Length of DestinationBuffer and SourceBuffer memory
+ @param DestinationBuffer The first memory buffer
+ @param SourceBuffer The second memory buffer
+ @param Length The length of DestinationBuffer and SourceBuffer memory
regions to compare. Must be non-zero.
@return 0 All Length bytes of the two buffers are identical.
@@ -161,7 +161,7 @@ InternalMemCompareMem (
@param Length The count of 8-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -180,7 +180,7 @@ InternalMemScanMem8 (
@param Length The count of 16-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -199,7 +199,7 @@ InternalMemScanMem16 (
@param Length The count of 32-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
@@ -218,7 +218,7 @@ InternalMemScanMem32 (
@param Length The count of 64-bit value to scan. Must be non-zero.
@param Value The value to search for in the target buffer.
- @return The pointer to the first occurrence or NULL if not found.
+ @return The pointer to the first occurrence, or NULL if not found.
**/
CONST VOID *
diff --git a/MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c b/MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c
index 7fee8ae6d8..efbbe20a70 100644
--- a/MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c
+++ b/MdePkg/Library/PeiMemoryLib/ScanMem8Wrapper.c
@@ -12,7 +12,7 @@
PeiMemoryLib
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
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
diff --git a/MdePkg/Library/PeiMemoryLib/SetMemWrapper.c b/MdePkg/Library/PeiMemoryLib/SetMemWrapper.c
index 6efa407d3d..8a3392718f 100644
--- a/MdePkg/Library/PeiMemoryLib/SetMemWrapper.c
+++ b/MdePkg/Library/PeiMemoryLib/SetMemWrapper.c
@@ -12,7 +12,7 @@
PeiMemoryLib
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
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
@@ -32,7 +32,7 @@
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
- @param Buffer Memory to set.
+ @param Buffer The memory to set.
@param Length The number of bytes to set.
@param Value The value with which to fill Length bytes of Buffer.