]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseMemoryLib/SetMem.c
Update copyright for files modified in this year
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLib / SetMem.c
index d051f2d63bf9f1954363f1db564b755f4a7a4b3f..546e6655122529a49aad091914ef3b0fd1e54450 100644 (file)
@@ -4,7 +4,7 @@
   build for a particular platform easily if an optimized version\r
   is desired.\r
 \r
-  Copyright (c) 2006, Intel Corporation<BR>\r
+  Copyright (c) 2006 - 2008, Intel Corporation<BR>\r
   All rights reserved. This program and the accompanying materials\r
   are licensed and made available under the terms and conditions of the BSD License\r
   which accompanies this distribution.  The full text of the license may be found at\r
   THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
   WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
 \r
-  Module Name:  SetMem.c\r
-\r
 **/\r
 \r
+\r
+\r
+\r
 #include "MemLibInternals.h"\r
 \r
 /**\r
   Set Buffer to Value for Size bytes.\r
 \r
-  @param  Buffer Memory to set.\r
-  @param  Size Number of bytes to set\r
-  @param  Value Value of the set operation.\r
+  @param  Buffer   Memory to set.\r
+  @param  Length   Number of bytes to set\r
+  @param  Value    Value of the set operation.\r
 \r
   @return Buffer\r
 \r
@@ -33,7 +34,7 @@ VOID *
 EFIAPI\r
 InternalMemSetMem (\r
   IN      VOID                      *Buffer,\r
-  IN      UINTN                     Size,\r
+  IN      UINTN                     Length,\r
   IN      UINT8                     Value\r
   )\r
 {\r
@@ -45,7 +46,7 @@ InternalMemSetMem (
   volatile UINT8                    *Pointer;\r
 \r
   Pointer = (UINT8*)Buffer;\r
-  while (Size-- != 0) {\r
+  while (Length-- != 0) {\r
     *(Pointer++) = Value;\r
   }\r
   return Buffer;\r