X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FLibrary%2FBaseMemoryLibMmx%2FSetMemWrapper.c;fp=MdePkg%2FLibrary%2FBaseMemoryLibMmx%2FSetMemWrapper.c;h=e8ad58e4f53ffeeae029eab2fa0aa01496967b64;hb=eb1c78dbb988654f46cc111d5b4a9dabd5578c1f;hp=a0b1bad0e15a7d2723c5ff91cf4216ef4a1888e6;hpb=13e4e1b76ad3db76471c767a009f90b0ed84384f;p=mirror_edk2.git diff --git a/MdePkg/Library/BaseMemoryLibMmx/SetMemWrapper.c b/MdePkg/Library/BaseMemoryLibMmx/SetMemWrapper.c index a0b1bad0e1..e8ad58e4f5 100644 --- a/MdePkg/Library/BaseMemoryLibMmx/SetMemWrapper.c +++ b/MdePkg/Library/BaseMemoryLibMmx/SetMemWrapper.c @@ -2,6 +2,7 @@ SetMem() implementation. The following BaseMemoryLib instances contain the same copy of this file: + BaseMemoryLib BaseMemoryLibMmx BaseMemoryLibSse2 @@ -11,7 +12,7 @@ PeiMemoryLib DxeMemoryLib - 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 @@ -28,11 +29,12 @@ Fills a target buffer with a byte value, and returns the target buffer. This function fills Length bytes of Buffer with Value, and returns Buffer. - 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 Length Number of bytes to set. - @param Value Value of the set operation. + @param Value Value with which to fill Length bytes of Buffer. @return Buffer.