]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseMemoryLibMmx/MemLibInternals.h
MdePkg: Fix some typing errors in the header files
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibMmx / MemLibInternals.h
CommitLineData
c5ecf6c1 1/** @file\r
2 Declaration of internal functions for Base Memory Library.\r
3\r
2bfb6009 4 The following BaseMemoryLib instances contain the same copy of this file:\r
c5ecf6c1 5 BaseMemoryLib\r
6 BaseMemoryLibMmx\r
7 BaseMemoryLibSse2\r
8 BaseMemoryLibRepStr\r
2bfb6009
LG
9 BaseMemoryLibOptDxe\r
10 BaseMemoryLibOptPei\r
c5ecf6c1 11\r
02b5cf7f 12 Copyright (c) 2006 - 2016, Intel Corporation. All rights reserved.<BR>\r
085c3968 13 This program and the accompanying materials\r
d531bfee 14 are licensed and made available under the terms and conditions of the BSD License\r
15 which accompanies this distribution. The full text of the license may be found at\r
15c952e7 16 http://opensource.org/licenses/bsd-license.php.\r
d531bfee 17\r
18 THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
19 WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
20\r
c5ecf6c1 21**/\r
22\r
23#ifndef __MEM_LIB_INTERNALS__\r
24#define __MEM_LIB_INTERNALS__\r
25\r
38bbd3d9 26#include <Base.h>\r
c5ecf6c1 27#include <Library/BaseMemoryLib.h>\r
28#include <Library/BaseLib.h>\r
29#include <Library/DebugLib.h>\r
30\r
31/**\r
32 Copy Length bytes from Source to Destination.\r
33\r
15c952e7 34 @param DestinationBuffer The target of the copy request.\r
35 @param SourceBuffer The place to copy from.\r
36 @param Length The number of bytes to copy\r
c5ecf6c1 37\r
38 @return Destination\r
39\r
40**/\r
41VOID *\r
42EFIAPI\r
43InternalMemCopyMem (\r
44 OUT VOID *DestinationBuffer,\r
45 IN CONST VOID *SourceBuffer,\r
46 IN UINTN Length\r
47 );\r
48\r
49/**\r
50 Set Buffer to Value for Size bytes.\r
51\r
15c952e7 52 @param Buffer The memory to set.\r
53 @param Length The number of bytes to set\r
54 @param Value The value of the set operation.\r
c5ecf6c1 55\r
56 @return Buffer\r
57\r
58**/\r
59VOID *\r
60EFIAPI\r
61InternalMemSetMem (\r
62 OUT VOID *Buffer,\r
63 IN UINTN Length,\r
64 IN UINT8 Value\r
65 );\r
66\r
67/**\r
68 Fills a target buffer with a 16-bit value, and returns the target buffer.\r
69\r
15c952e7 70 @param Buffer The pointer to the target buffer to fill.\r
71 @param Length The count of 16-bit value to fill.\r
72 @param Value The value with which to fill Length bytes of Buffer.\r
c5ecf6c1 73\r
74 @return Buffer\r
75\r
76**/\r
77VOID *\r
78EFIAPI\r
79InternalMemSetMem16 (\r
80 OUT VOID *Buffer,\r
81 IN UINTN Length,\r
82 IN UINT16 Value\r
83 );\r
84\r
85/**\r
86 Fills a target buffer with a 32-bit value, and returns the target buffer.\r
87\r
15c952e7 88 @param Buffer The pointer to the target buffer to fill.\r
89 @param Length The count of 32-bit value to fill.\r
90 @param Value The value with which to fill Length bytes of Buffer.\r
c5ecf6c1 91\r
92 @return Buffer\r
93\r
94**/\r
95VOID *\r
96EFIAPI\r
97InternalMemSetMem32 (\r
98 OUT VOID *Buffer,\r
99 IN UINTN Length,\r
100 IN UINT32 Value\r
101 );\r
102\r
103/**\r
104 Fills a target buffer with a 64-bit value, and returns the target buffer.\r
105\r
00b7cc0f 106 @param Buffer The pointer to the target buffer to fill.\r
15c952e7 107 @param Length The count of 64-bit value to fill.\r
108 @param Value The value with which to fill Length bytes of Buffer.\r
c5ecf6c1 109\r
110 @return Buffer\r
111\r
112**/\r
113VOID *\r
114EFIAPI\r
115InternalMemSetMem64 (\r
116 OUT VOID *Buffer,\r
117 IN UINTN Length,\r
118 IN UINT64 Value\r
119 );\r
120\r
121/**\r
122 Set Buffer to 0 for Size bytes.\r
123\r
15c952e7 124 @param Buffer The memory to set.\r
125 @param Length The number of bytes to set.\r
c5ecf6c1 126\r
127 @return Buffer\r
128\r
129**/\r
130VOID *\r
131EFIAPI\r
132InternalMemZeroMem (\r
133 OUT VOID *Buffer,\r
134 IN UINTN Length\r
135 );\r
136\r
137/**\r
138 Compares two memory buffers of a given length.\r
139\r
15c952e7 140 @param DestinationBuffer The first memory buffer.\r
141 @param SourceBuffer The second memory buffer.\r
142 @param Length The length of DestinationBuffer and SourceBuffer memory\r
c5ecf6c1 143 regions to compare. Must be non-zero.\r
144\r
d531bfee 145 @return 0 All Length bytes of the two buffers are identical.\r
146 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first\r
147 mismatched byte in DestinationBuffer.\r
c5ecf6c1 148\r
149**/\r
150INTN\r
151EFIAPI\r
152InternalMemCompareMem (\r
153 IN CONST VOID *DestinationBuffer,\r
154 IN CONST VOID *SourceBuffer,\r
155 IN UINTN Length\r
156 );\r
157\r
158/**\r
159 Scans a target buffer for an 8-bit value, and returns a pointer to the\r
160 matching 8-bit value in the target buffer.\r
161\r
15c952e7 162 @param Buffer The pointer to the target buffer to scan.\r
163 @param Length The count of 8-bit value to scan. Must be non-zero.\r
164 @param Value The value to search for in the target buffer.\r
c5ecf6c1 165\r
15c952e7 166 @return The pointer to the first occurrence or NULL if not found.\r
c5ecf6c1 167\r
168**/\r
169CONST VOID *\r
170EFIAPI\r
171InternalMemScanMem8 (\r
172 IN CONST VOID *Buffer,\r
173 IN UINTN Length,\r
174 IN UINT8 Value\r
175 );\r
176\r
177/**\r
178 Scans a target buffer for a 16-bit value, and returns a pointer to the\r
179 matching 16-bit value in the target buffer.\r
180\r
15c952e7 181 @param Buffer The pointer to the target buffer to scan.\r
182 @param Length The count of 16-bit value to scan. Must be non-zero.\r
183 @param Value The value to search for in the target buffer.\r
c5ecf6c1 184\r
15c952e7 185 @return The pointer to the first occurrence or NULL if not found.\r
c5ecf6c1 186\r
187**/\r
188CONST VOID *\r
189EFIAPI\r
190InternalMemScanMem16 (\r
191 IN CONST VOID *Buffer,\r
192 IN UINTN Length,\r
193 IN UINT16 Value\r
194 );\r
195\r
196/**\r
197 Scans a target buffer for a 32-bit value, and returns a pointer to the\r
198 matching 32-bit value in the target buffer.\r
199\r
15c952e7 200 @param Buffer The pointer to the target buffer to scan.\r
201 @param Length The count of 32-bit value to scan. Must be non-zero.\r
202 @param Value The value to search for in the target buffer.\r
c5ecf6c1 203\r
15c952e7 204 @return The pointer to the first occurrence or NULL if not found.\r
c5ecf6c1 205\r
206**/\r
207CONST VOID *\r
208EFIAPI\r
209InternalMemScanMem32 (\r
210 IN CONST VOID *Buffer,\r
211 IN UINTN Length,\r
212 IN UINT32 Value\r
213 );\r
214\r
215/**\r
216 Scans a target buffer for a 64-bit value, and returns a pointer to the\r
217 matching 64-bit value in the target buffer.\r
218\r
15c952e7 219 @param Buffer The pointer to the target buffer to scan.\r
220 @param Length The count of 64-bit value to scan. Must be non-zero.\r
221 @param Value The value to search for in the target buffer.\r
c5ecf6c1 222\r
15c952e7 223 @return The pointer to the first occurrence or NULL if not found.\r
c5ecf6c1 224\r
225**/\r
226CONST VOID *\r
227EFIAPI\r
228InternalMemScanMem64 (\r
229 IN CONST VOID *Buffer,\r
230 IN UINTN Length,\r
231 IN UINT64 Value\r
232 );\r
233\r
02b5cf7f
HW
234/**\r
235 Checks whether the contents of a buffer are all zeros.\r
236\r
237 @param Buffer The pointer to the buffer to be checked.\r
238 @param Length The size of the buffer (in bytes) to be checked.\r
239\r
240 @retval TRUE Contents of the buffer are all zeros.\r
241 @retval FALSE Contents of the buffer are not all zeros.\r
242\r
243**/\r
244BOOLEAN\r
245EFIAPI\r
246InternalMemIsZeroBuffer (\r
247 IN CONST VOID *Buffer,\r
248 IN UINTN Length\r
249 );\r
250\r
c5ecf6c1 251#endif\r