Lines Matching refs:Buffer

50   This function fills Length bytes of Buffer with Value, and returns Buffer.
52 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
54 @param Buffer The memory to set.
56 @param Value The value with which to fill Length bytes of Buffer.
58 @return Buffer.
64 OUT VOID *Buffer,
72 This function fills Length bytes of Buffer with the 16-bit value specified by
73 Value, and returns Buffer. Value is repeated every 16-bits in for Length
74 bytes of Buffer.
76 If Length > 0 and Buffer is NULL, then ASSERT().
77 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
78 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
81 @param Buffer The pointer to the target buffer to fill.
82 @param Length The number of bytes in Buffer to fill.
83 @param Value The value with which to fill Length bytes of Buffer.
85 @return Buffer.
91 OUT VOID *Buffer,
99 This function fills Length bytes of Buffer with the 32-bit value specified by
100 Value, and returns Buffer. Value is repeated every 32-bits in for Length
101 bytes of Buffer.
103 If Length > 0 and Buffer is NULL, then ASSERT().
104 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
105 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
108 @param Buffer The pointer to the target buffer to fill.
109 @param Length The number of bytes in Buffer to fill.
110 @param Value The value with which to fill Length bytes of Buffer.
112 @return Buffer.
118 OUT VOID *Buffer,
126 This function fills Length bytes of Buffer with the 64-bit value specified by
127 Value, and returns Buffer. Value is repeated every 64-bits in for Length
128 bytes of Buffer.
130 If Length > 0 and Buffer is NULL, then ASSERT().
131 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
132 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
135 @param Buffer The pointer to the target buffer to fill.
136 @param Length The number of bytes in Buffer to fill.
137 @param Value The value with which to fill Length bytes of Buffer.
139 @return Buffer.
145 OUT VOID *Buffer,
153 This function fills Length bytes of Buffer with the UINTN sized value specified by
154 Value, and returns Buffer. Value is repeated every sizeof(UINTN) bytes for Length
155 bytes of Buffer.
157 If Length > 0 and Buffer is NULL, then ASSERT().
158 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
159 If Buffer is not aligned on a UINTN boundary, then ASSERT().
162 @param Buffer The pointer to the target buffer to fill.
163 @param Length The number of bytes in Buffer to fill.
164 @param Value The value with which to fill Length bytes of Buffer.
166 @return Buffer.
172 OUT VOID *Buffer,
180 This function fills Length bytes of Buffer with zeros, and returns Buffer.
182 If Length > 0 and Buffer is NULL, then ASSERT().
183 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
185 @param Buffer The pointer to the target buffer to fill with zeros.
186 @param Length The number of bytes in Buffer to fill with zeros.
188 @return Buffer.
194 OUT VOID *Buffer,
232 This function searches target the buffer specified by Buffer and Length from the lowest
237 If Length > 0 and Buffer is NULL, then ASSERT().
238 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
240 @param Buffer The pointer to the target buffer to scan.
241 @param Length The number of bytes in Buffer to scan.
250 IN CONST VOID *Buffer,
259 This function searches target the buffer specified by Buffer and Length from the lowest
264 If Length > 0 and Buffer is NULL, then ASSERT().
265 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
267 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
269 @param Buffer The pointer to the target buffer to scan.
270 @param Length The number of bytes in Buffer to scan.
279 IN CONST VOID *Buffer,
288 This function searches target the buffer specified by Buffer and Length from the lowest
293 If Length > 0 and Buffer is NULL, then ASSERT().
294 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
296 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
298 @param Buffer The pointer to the target buffer to scan.
299 @param Length The number of bytes in Buffer to scan.
308 IN CONST VOID *Buffer,
317 This function searches target the buffer specified by Buffer and Length from the lowest
322 If Length > 0 and Buffer is NULL, then ASSERT().
323 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
325 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
327 @param Buffer The pointer to the target buffer to scan.
328 @param Length The number of bytes in Buffer to scan.
337 IN CONST VOID *Buffer,
346 This function searches target the buffer specified by Buffer and Length from the lowest
351 If Length > 0 and Buffer is NULL, then ASSERT().
352 If Buffer is not aligned on a UINTN boundary, then ASSERT().
354 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
356 @param Buffer The pointer to the target buffer to scan.
357 @param Length The number of bytes in Buffer to scan.
366 IN CONST VOID *Buffer,
420 This function searches target the buffer specified by Buffer and Length from
426 If Length > 0 and Buffer is NULL, then ASSERT().
427 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
429 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
431 @param Buffer The pointer to the target buffer to scan.
432 @param Length The number of bytes in Buffer to scan.
441 IN CONST VOID *Buffer,
472 If Length > 0 and Buffer is NULL, then ASSERT().
473 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
475 @param Buffer The pointer to the buffer to be checked.
485 IN CONST VOID *Buffer,