2007-10-07 01:23:49 +02:00
|
|
|
/** @file
|
|
|
|
ZeroMem() implementation.
|
|
|
|
|
2008-11-25 08:25:14 +01:00
|
|
|
The following BaseMemoryLib instances contain the same copy of this file:
|
2007-10-07 01:23:49 +02:00
|
|
|
|
|
|
|
BaseMemoryLib
|
|
|
|
BaseMemoryLibMmx
|
|
|
|
BaseMemoryLibSse2
|
|
|
|
BaseMemoryLibRepStr
|
2008-09-18 16:27:39 +02:00
|
|
|
BaseMemoryLibOptDxe
|
|
|
|
BaseMemoryLibOptPei
|
2007-10-07 01:23:49 +02:00
|
|
|
PeiMemoryLib
|
2009-08-11 17:32:16 +02:00
|
|
|
UefiMemoryLib
|
2008-11-25 08:25:14 +01:00
|
|
|
|
2009-08-11 17:32:16 +02:00
|
|
|
Copyright (c) 2006 - 2009 , Intel Corporation<BR>
|
2008-11-25 08:25:14 +01:00
|
|
|
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
|
|
|
|
http://opensource.org/licenses/bsd-license.php
|
2007-10-07 01:23:49 +02:00
|
|
|
|
2008-11-25 08:25:14 +01:00
|
|
|
THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
2007-10-07 01:23:49 +02:00
|
|
|
|
2008-11-25 08:25:14 +01:00
|
|
|
**/
|
2007-10-07 01:23:49 +02:00
|
|
|
|
|
|
|
#include "MemLibInternals.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Fills a target buffer with zeros, and returns the target buffer.
|
|
|
|
|
|
|
|
This function fills Length bytes of Buffer with zeros, and returns Buffer.
|
2008-11-25 08:25:14 +01:00
|
|
|
|
2007-10-07 01:23:49 +02:00
|
|
|
If Length > 0 and Buffer is NULL, then ASSERT().
|
2008-09-08 03:24:16 +02:00
|
|
|
If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
|
2007-10-07 01:23:49 +02:00
|
|
|
|
|
|
|
@param Buffer Pointer to the target buffer to fill with zeros.
|
|
|
|
@param Length Number of bytes in Buffer to fill with zeros.
|
|
|
|
|
|
|
|
@return Buffer.
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
ZeroMem (
|
|
|
|
OUT VOID *Buffer,
|
|
|
|
IN UINTN Length
|
|
|
|
)
|
|
|
|
{
|
2008-09-18 16:27:39 +02:00
|
|
|
ASSERT (!(Buffer == NULL && Length > 0));
|
2007-10-07 01:23:49 +02:00
|
|
|
ASSERT (Length <= (MAX_ADDRESS - (UINTN)Buffer + 1));
|
|
|
|
return InternalMemZeroMem (Buffer, Length);
|
|
|
|
}
|