TianoCore EDK2 master
Loading...
Searching...
No Matches
IsZeroBufferWrapper.c
Go to the documentation of this file.
1
20#include "MemLibInternals.h"
21
38BOOLEAN
39EFIAPI
41 IN CONST VOID *Buffer,
42 IN UINTN Length
43 )
44{
45 ASSERT (!(Buffer == NULL && Length > 0));
46 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)Buffer));
47 return InternalMemIsZeroBuffer (Buffer, Length);
48}
UINT64 UINTN
#define MAX_ADDRESS
BOOLEAN EFIAPI IsZeroBuffer(IN CONST VOID *Buffer, IN UINTN Length)
BOOLEAN EFIAPI InternalMemIsZeroBuffer(IN CONST VOID *Buffer, IN UINTN Length)
#define NULL
Definition: Base.h:319
#define CONST
Definition: Base.h:259
#define IN
Definition: Base.h:279