Searched refs:Destination (Results 1 - 25 of 176) sorted by relevance

12345678

/device/linaro/bootloader/edk2/ArmPkg/Library/CompilerIntrinsicsLib/AArch64/
H A Dmemset.c17 void *memset(void *Destination, int Value, int Count) argument
19 CHAR8 *Ptr = Destination;
24 return Destination;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/
H A DCopyMem.c26 Copy Length bytes from Source to Destination.
28 @param Destination Target of copy
32 @return Destination
38 OUT VOID *Destination,
51 if (Source > Destination) {
52 Destination8 = (UINT8*)Destination;
57 } else if (Source < Destination) {
58 Destination8 = (UINT8*)Destination + Length;
64 return Destination;
37 InternalMemCopyMem( OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/
H A DCopyMem.c26 Copy Length bytes from Source to Destination.
28 @param Destination Target of copy
32 @return Destination
38 OUT VOID *Destination,
51 if (Source > Destination) {
52 Destination8 = (UINT8*)Destination;
57 } else if (Source < Destination) {
58 Destination8 = (UINT8*)Destination + Length;
64 return Destination;
37 InternalMemCopyMem( OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
H A DEfiCopyMem.c29 IN VOID *Destination,
37 Copy Length bytes from Source to Destination.
41 Destination - Target of copy
56 if (Source < Destination) {
57 Destination8 = (CHAR8 *) Destination + Length - 1;
63 Destination8 = (CHAR8 *) Destination;
28 EfiCommonLibCopyMem( IN VOID *Destination, IN VOID *Source, IN UINTN Length ) argument
H A DString.c28 IN CHAR16 *Destination,
34 Copy the Unicode string Source to Destination.
37 Destination - Location to copy string
46 *(Destination++) = *(Source++);
48 *Destination = 0;
63 Dst Destination string
209 IN CHAR16 *Destination,
215 Concatinate Source on the end of Destination
218 Destination - String to added to the end of.
226 EfiStrCpy (Destination
27 EfiStrCpy( IN CHAR16 *Destination, IN CHAR16 *Source ) argument
208 EfiStrCat( IN CHAR16 *Destination, IN CHAR16 *Source ) argument
278 EfiAsciiStrCpy( IN CHAR8 *Destination, IN CHAR8 *Source ) argument
415 EfiAsciiStrCat( IN CHAR8 *Destination, IN CHAR8 *Source ) argument
437 EfiAsciiStrnCat( IN CHAR8 *Destination, IN CHAR8 *Source, IN UINTN Length ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
H A DMemLib.c32 OUT VOID *Destination,
38 Destination,
42 return Destination;
31 InternalMemCopyMem( OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
H A DMemLib.c32 OUT VOID *Destination,
37 gBS->CopyMem (Destination, (VOID*)Source, Length);
38 return Destination;
31 InternalMemCopyMem( OUT VOID *Destination, IN CONST VOID *Source, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/
H A DSafeString.c112 @param MaxSize The maximum number of Destination Unicode
152 to the array pointed to by Destination.
154 If Destination is not aligned on a 16-bit boundary, then ASSERT().
158 @param Destination A pointer to a Null-terminated Unicode string.
159 @param DestMax The maximum number of Destination Unicode
165 @retval RETURN_INVALID_PARAMETER If Destination is NULL.
171 @retval RETURN_ACCESS_DENIED If Source and Destination overlap.
176 OUT CHAR16 *Destination,
183 ASSERT (((UINTN) Destination & BIT0) == 0);
187 // 1. Neither Destination no
175 StrCpyS( OUT CHAR16 *Destination, IN UINTN DestMax, IN CONST CHAR16 *Source ) argument
255 StrnCpyS( OUT CHAR16 *Destination, IN UINTN DestMax, IN CONST CHAR16 *Source, IN UINTN Length ) argument
345 StrCatS( IN OUT CHAR16 *Destination, IN UINTN DestMax, IN CONST CHAR16 *Source ) argument
443 StrnCatS( IN OUT CHAR16 *Destination, IN UINTN DestMax, IN CONST CHAR16 *Source, IN UINTN Length ) argument
583 AsciiStrCpyS( OUT CHAR8 *Destination, IN UINTN DestMax, IN CONST CHAR8 *Source ) argument
658 AsciiStrnCpyS( OUT CHAR8 *Destination, IN UINTN DestMax, IN CONST CHAR8 *Source, IN UINTN Length ) argument
743 AsciiStrCatS( IN OUT CHAR8 *Destination, IN UINTN DestMax, IN CONST CHAR8 *Source ) argument
836 AsciiStrnCatS( IN OUT CHAR8 *Destination, IN UINTN DestMax, IN CONST CHAR8 *Source, IN UINTN Length ) argument
[all...]
H A DString.c26 string Destination, and returns Destination. If Source and Destination
29 If Destination is NULL, then ASSERT().
30 If Destination is not aligned on a 16-bit boundary, then ASSERT().
33 If Source and Destination overlap, then ASSERT().
38 @param Destination A pointer to a Null-terminated Unicode string.
41 @return Destination.
47 OUT CHAR16 *Destination,
54 // Destination canno
46 StrCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
107 StrnCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
366 StrCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
423 StrnCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
1108 AsciiStrCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1165 AsciiStrnCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
1517 AsciiStrCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1572 AsciiStrnCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/
H A DString.c30 string Destination, and returns Destination. If Source and Destination
33 If Destination is NULL, then ASSERT().
34 If Destination is not aligned on a 16-bit boundary, then ASSERT().
37 If Source and Destination overlap, then ASSERT().
42 @param Destination Pointer to a Null-terminated Unicode string.
51 OUT CHAR16 *Destination,
58 // Destination cannot be NULL
60 ASSERT (Destination !
50 GlueStrCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
110 GlueStrnCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
355 GlueStrCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
410 GlueStrnCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
1102 AsciiStrCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1158 AsciiStrnCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
1495 AsciiStrCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1548 AsciiStrnCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DBinderFuncs.c42 IN VOID *Destination,
47 memmove (Destination, Source, Length);
52 IN VOID *Destination,
57 memset (Destination, Value, Length);
41 CommonLibBinderCopyMem( IN VOID *Destination, IN VOID *Source, IN UINTN Length ) argument
51 CommonLibBinderSetMem( IN VOID *Destination, IN UINTN Length, IN UINT8 Value ) argument
H A DBinderFuncs.h41 IN VOID *Destination,
48 IN VOID *Destination,
H A DDecompress.h51 IN OUT VOID *Destination,
66 Destination - The destination buffer to store the decompressed data
109 IN OUT VOID *Destination,
124 Destination - The destination buffer to store the decompressed data
150 IN OUT VOID *Destination,
160 OUT VOID **Destination,
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/X64/
H A DInterlockedCompareExchange32.c21 long volatile * Destination,
H A DInterlockedCompareExchange64.c21 __int64 volatile * Destination,
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/Ia32/
H A DEfiCopyMemRep1.c26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
52 mov edi, Destination ; edi <- Destination local
64 lea edi, [edi + edx - 1] ; edi <- End of Destination
25 EfiCommonLibCopyMem( IN VOID *Destination, IN VOID *Source, IN UINTN Count ) argument
H A DEfiCopyMemRep4.c26 IN VOID *Destination,
34 Copy Length bytes from Source to Destination.
38 Destination - Target of copy
52 mov edi, Destination ; edi <- Destination local
71 lea edi, [edi + edx - 1] ; edi <- End of Destination
25 EfiCommonLibCopyMem( IN VOID *Destination, IN VOID *Source, IN UINTN Count ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseSynchronizationLib/X64/
H A DInterlockedCompareExchange16.c21 __int16 volatile * Destination,
H A DInterlockedCompareExchange32.c20 long volatile * Destination,
H A DInterlockedCompareExchange64.c20 __int64 volatile * Destination,
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
H A DIp6Route.h35 EFI_IPv6_ADDRESS Destination; member in struct:__anon8461
43 EFI_IPv6_ADDRESS Destination; member in struct:__anon8462
181 Allocate a route entry then initialize it with the Destination/PrefixLength
184 @param[in] Destination The IPv6 destination address. This is an optional
195 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
210 @param[in] Destination The destionation address to search. If NULL, search
213 by Destination.
222 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
241 @param[in] Destination The destination of the network.
253 IN EFI_IPv6_ADDRESS *Destination,
[all...]
H A DIp6Route.c44 Allocate a route entry then initialize it with the Destination/PrefixLength
47 @param[in] Destination The IPv6 destination address. This is an optional
58 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
75 if (Destination != NULL) {
76 IP6_COPY_ADDRESS (&RtEntry->Destination, Destination);
114 @param[in] Destination The destionation address to search. If NULL, search
117 by Destination.
126 IN EFI_IPv6_ADDRESS *Destination OPTIONAL,
134 ASSERT (Destination !
455 Ip6AddRoute( IN OUT IP6_ROUTE_TABLE *RtTable, IN EFI_IPv6_ADDRESS *Destination, IN UINT8 PrefixLength, IN EFI_IPv6_ADDRESS *GatewayAddress ) argument
514 Ip6DelRoute( IN OUT IP6_ROUTE_TABLE *RtTable, IN EFI_IPv6_ADDRESS *Destination, IN UINT8 PrefixLength, IN EFI_IPv6_ADDRESS *GatewayAddress ) argument
[all...]
/device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
H A DLzmaDecompress.h43 into Destination, then RETURN_SUCCESS is returned. If the compressed source data
49 @param Destination The destination buffer to store the decompressed data
55 the uncompressed buffer is returned in Destination.
65 IN OUT VOID *Destination,
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
H A DUefiDecompressLib.h78 responsibility to allocate and free the Destination and Scratch buffers.
80 into Destination, then RETURN_SUCCESS is returned. If the compressed source data
85 If Destination is NULL, then ASSERT().
89 @param Destination The destination buffer to store the decompressed data
95 the uncompressed buffer is returned in Destination.
104 IN OUT VOID *Destination,
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
H A DDecompress.h61 IN OUT VOID *Destination,
77 Destination - The destination buffer to store the decompressed data
125 IN OUT VOID *Destination,
141 Destination - The destination buffer to store the decompressed data
168 IN OUT VOID *Destination,

Completed in 302 milliseconds

12345678