2007-06-22 05:21:45 +02:00
|
|
|
/** @file
|
|
|
|
Implementation of the EfiSetMem routine. This function is broken
|
|
|
|
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.
|
|
|
|
|
2010-04-23 18:04:26 +02:00
|
|
|
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
|
|
|
This program and the accompanying materials
|
2007-06-22 05:21:45 +02:00
|
|
|
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
|
2010-06-24 22:11:34 +02:00
|
|
|
http://opensource.org/licenses/bsd-license.php.
|
2007-06-22 05:21:45 +02: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.
|
|
|
|
|
|
|
|
**/
|
|
|
|
|
2008-09-17 09:46:17 +02:00
|
|
|
|
2007-06-30 01:22:13 +02:00
|
|
|
|
2007-06-22 05:21:45 +02:00
|
|
|
|
|
|
|
#include "MemLibInternals.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
Set Buffer to Value for Size bytes.
|
|
|
|
|
2010-06-24 22:11:34 +02:00
|
|
|
@param Buffer The memory to set.
|
|
|
|
@param Length The number of bytes to set.
|
|
|
|
@param Value The value of the set operation.
|
2007-06-22 05:21:45 +02:00
|
|
|
|
|
|
|
@return Buffer
|
|
|
|
|
|
|
|
**/
|
|
|
|
VOID *
|
|
|
|
EFIAPI
|
|
|
|
InternalMemSetMem (
|
2010-01-27 04:25:28 +01:00
|
|
|
OUT VOID *Buffer,
|
2008-10-21 08:55:38 +02:00
|
|
|
IN UINTN Length,
|
2007-06-22 05:21:45 +02:00
|
|
|
IN UINT8 Value
|
|
|
|
)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
// Declare the local variables that actually move the data elements as
|
|
|
|
// volatile to prevent the optimizer from replacing this function with
|
|
|
|
// the intrinsic memset()
|
|
|
|
//
|
|
|
|
volatile UINT8 *Pointer;
|
|
|
|
|
|
|
|
Pointer = (UINT8*)Buffer;
|
2009-01-21 04:17:15 +01:00
|
|
|
while (Length-- > 0) {
|
2007-06-22 05:21:45 +02:00
|
|
|
*(Pointer++) = Value;
|
|
|
|
}
|
|
|
|
return Buffer;
|
|
|
|
}
|