TianoCore EDK2 master
Loading...
Searching...
No Matches
MemLib.c
Go to the documentation of this file.
1
9#include "MemLibInternals.h"
10
23VOID *
24EFIAPI
26 OUT VOID *Destination,
27 IN CONST VOID *Source,
28 IN UINTN Length
29 )
30{
32 Destination,
33 (VOID *)Source,
34 Length
35 );
36 return Destination;
37}
38
51VOID *
52EFIAPI
54 OUT VOID *Buffer,
55 IN UINTN Size,
56 IN UINT8 Value
57 )
58{
60 Buffer,
61 Size,
62 Value
63 );
64 return Buffer;
65}
UINT64 UINTN
CONST EFI_PEI_SERVICES **EFIAPI GetPeiServicesTablePointer(VOID)
VOID *EFIAPI CopyMem(OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length)
VOID *EFIAPI SetMem(OUT VOID *Buffer, IN UINTN Length, IN UINT8 Value)
Definition: SetMemWrapper.c:38
#define CONST
Definition: Base.h:259
#define IN
Definition: Base.h:279
#define OUT
Definition: Base.h:284
VOID *EFIAPI InternalMemCopyMem(OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length)
Definition: MemLib.c:25
VOID *EFIAPI InternalMemSetMem(OUT VOID *Buffer, IN UINTN Size, IN UINT8 Value)
Definition: MemLib.c:53