]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Library/BaseMemoryLibSse2/SetMem16Wrapper.c
Removed MdePkg usage of ModuleName: in file headers
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibSse2 / SetMem16Wrapper.c
1 /** @file
2 SetMem16() implementation.
3
4 Copyright (c) 2006, Intel Corporation<BR>
5 All rights reserved. This program and the accompanying materials
6 are licensed and made available under the terms and conditions of the BSD License
7 which accompanies this distribution. The full text of the license may be found at
8 http://opensource.org/licenses/bsd-license.php
9
10 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12
13 The following BaseMemoryLib instances share the same version of this file:
14
15 BaseMemoryLib
16 BaseMemoryLibMmx
17 BaseMemoryLibSse2
18 BaseMemoryLibRepStr
19 PeiMemoryLib
20 DxeMemoryLib
21
22 **/
23
24 //
25 // Include common header file for this module.
26 //
27
28
29 #include "MemLibInternals.h"
30
31 /**
32 Fills a target buffer with a 16-bit value, and returns the target buffer.
33
34 This function fills Length bytes of Buffer with the 16-bit value specified by
35 Value, and returns Buffer. Value is repeated every 16-bits in for Length
36 bytes of Buffer.
37
38 If Length > 0 and Buffer is NULL, then ASSERT().
39 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
40 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
41 If Length is not aligned on a 16-bit boundary, then ASSERT().
42
43 @param Buffer Pointer to the target buffer to fill.
44 @param Length Number of bytes in Buffer to fill.
45 @param Value Value with which to fill Length bytes of Buffer.
46
47 @return Buffer.
48
49 **/
50 VOID *
51 EFIAPI
52 SetMem16 (
53 OUT VOID *Buffer,
54 IN UINTN Length,
55 IN UINT16 Value
56 )
57 {
58 if (Length == 0) {
59 return Buffer;
60 }
61
62 ASSERT (Buffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
64 ASSERT ((((UINTN)Buffer) & (sizeof (Value) - 1)) == 0);
65 ASSERT ((Length & (sizeof (Value) - 1)) == 0);
66
67 return InternalMemSetMem16 (Buffer, Length / sizeof (Value), Value);
68 }