Lines Matching full:is
23 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
24 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
46 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
67 Value, and returns Buffer. Value is repeated every 16-bits in for Length
70 If Length > 0 and Buffer is NULL, then ASSERT().
71 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
72 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
73 If Length is not aligned on a 16-bit boundary, then ASSERT().
94 Value, and returns Buffer. Value is repeated every 32-bits in for Length
97 If Length > 0 and Buffer is NULL, then ASSERT().
98 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
99 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
100 If Length is not aligned on a 32-bit boundary, then ASSERT().
121 Value, and returns Buffer. Value is repeated every 64-bits in for Length
124 If Length > 0 and Buffer is NULL, then ASSERT().
125 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
126 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
127 If Length is not aligned on a 64-bit boundary, then ASSERT().
145 Fills a target buffer with a value that is size UINTN, and returns the target buffer.
148 Value, and returns Buffer. Value is repeated every sizeof(UINTN) bytes for Length
151 If Length > 0 and Buffer is NULL, then ASSERT().
152 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
153 If Buffer is not aligned on a UINTN boundary, then ASSERT().
154 If Length is not aligned on a UINTN boundary, then ASSERT().
176 If Length > 0 and Buffer is NULL, then ASSERT().
177 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
196 If all Length bytes of the two buffers are identical, then 0 is returned. Otherwise, the
197 value returned is the first mismatched byte in SourceBuffer subtracted from the first
200 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
201 If Length > 0 and SourceBuffer is NULL, then ASSERT().
202 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
203 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
227 address to the highest address for an 8-bit value that matches Value. If a match is found,
228 then a pointer to the matching byte in the target buffer is returned. If no match is found,
229 then NULL is returned. If Length is 0, then NULL is returned.
231 If Length > 0 and Buffer is NULL, then ASSERT().
232 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
254 address to the highest address for a 16-bit value that matches Value. If a match is found,
255 then a pointer to the matching byte in the target buffer is returned. If no match is found,
256 then NULL is returned. If Length is 0, then NULL is returned.
258 If Length > 0 and Buffer is NULL, then ASSERT().
259 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
260 If Length is not aligned on a 16-bit boundary, then ASSERT().
261 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
283 address to the highest address for a 32-bit value that matches Value. If a match is found,
284 then a pointer to the matching byte in the target buffer is returned. If no match is found,
285 then NULL is returned. If Length is 0, then NULL is returned.
287 If Length > 0 and Buffer is NULL, then ASSERT().
288 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
289 If Length is not aligned on a 32-bit boundary, then ASSERT().
290 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
312 address to the highest address for a 64-bit value that matches Value. If a match is found,
313 then a pointer to the matching byte in the target buffer is returned. If no match is found,
314 then NULL is returned. If Length is 0, then NULL is returned.
316 If Length > 0 and Buffer is NULL, then ASSERT().
317 If Buffer is not aligned on a 64-bit boundary, then ASSERT().
318 If Length is not aligned on a 64-bit boundary, then ASSERT().
319 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
341 address to the highest address for a UINTN sized value that matches Value. If a match is found,
342 then a pointer to the matching byte in the target buffer is returned. If no match is found,
343 then NULL is returned. If Length is 0, then NULL is returned.
345 If Length > 0 and Buffer is NULL, then ASSERT().
346 If Buffer is not aligned on a UINTN boundary, then ASSERT().
347 If Length is not aligned on a UINTN boundary, then ASSERT().
348 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
371 If DestinationGuid is NULL, then ASSERT().
372 If SourceGuid is NULL, then ASSERT().
390 This function compares Guid1 to Guid2. If the GUIDs are identical then TRUE is returned.
391 If there are any bit differences in the two GUIDs, then FALSE is returned.
393 If Guid1 is NULL, then ASSERT().
394 If Guid2 is NULL, then ASSERT().
416 GUID value that matches Guid. If a match is found, then a pointer to the matching
417 GUID in the target buffer is returned. If no match is found, then NULL is returned.
418 If Length is 0, then NULL is returned.
420 If Length > 0 and Buffer is NULL, then ASSERT().
421 If Buffer is not aligned on a 32-bit boundary, then ASSERT().
422 If Length is not aligned on a 128-bit boundary, then ASSERT().
423 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
441 Checks if the given GUID is a zero GUID.
443 This function checks whether the given GUID is a zero GUID. If the GUID is
444 identical to a zero GUID then TRUE is returned. Otherwise, FALSE is returned.
446 If Guid is NULL, then ASSERT().
450 @retval TRUE Guid is a zero GUID.
451 @retval FALSE Guid is not a zero GUID.
466 If Length > 0 and Buffer is NULL, then ASSERT().
467 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().