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

1234

/vbox/src/VBox/Devices/EFI/Firmware/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
/vbox/src/VBox/Devices/EFI/Firmware/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
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DString.c23 string Destination, and returns Destination. If Source and Destination
26 If Destination is NULL, then ASSERT().
27 If Destination is not aligned on a 16-bit boundary, then ASSERT().
30 If Source and Destination overlap, then ASSERT().
35 @param Destination A pointer to a Null-terminated Unicode string.
38 @return Destination.
44 OUT CHAR16 *Destination,
51 // Destination canno
43 StrCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
102 StrnCpy( OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
356 StrCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source ) argument
411 StrnCat( IN OUT CHAR16 *Destination, IN CONST CHAR16 *Source, IN UINTN Length ) argument
1092 AsciiStrCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1147 AsciiStrnCpy( OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
1494 AsciiStrCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source ) argument
1547 AsciiStrnCat( IN OUT CHAR8 *Destination, IN CONST CHAR8 *Source, IN UINTN Length ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DBinderFuncs.c49 IN VOID *Destination,
54 memmove (Destination, Source, Length);
59 IN VOID *Destination,
64 memset (Destination, Value, Length);
48 CommonLibBinderCopyMem( IN VOID *Destination, IN VOID *Source, IN UINTN Length ) argument
58 CommonLibBinderSetMem( IN VOID *Destination, IN UINTN Length, IN UINT8 Value ) argument
H A DBinderFuncs.h49 IN VOID *Destination,
56 IN VOID *Destination,
H A DDecompress.h58 IN OUT VOID *Destination,
73 Destination - The destination buffer to store the decompressed data
116 IN OUT VOID *Destination,
131 Destination - The destination buffer to store the decompressed data
157 IN OUT VOID *Destination,
167 OUT VOID **Destination,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseSynchronizationLib/X64/
H A DInterlockedCompareExchange32.c20 long volatile * Destination,
H A DInterlockedCompareExchange64.c20 __int64 volatile * Destination,
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Route.h35 EFI_IPv6_ADDRESS Destination; member in struct:__anon12507
43 EFI_IPv6_ADDRESS Destination; member in struct:__anon12508
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...]
/vbox/src/VBox/Devices/EFI/Firmware/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,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Io.c54 @param Dest Destination address of the TCP segment.
75 EFI_IP_ADDRESS Destination; local
78 Destination.Addr[0] = Dest;
104 Status = IpIoSend (IpIo, Nbuf, IpSender, NULL, NULL, &Destination, &Override);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DLzmaDecompressLibInternal.h69 into Destination, then RETURN_SUCCESS is returned. If the compressed source data
75 @param Destination The destination buffer to store the decompressed data
81 the uncompressed buffer is returned in Destination.
91 IN OUT VOID *Destination,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibMmx/X64/
H A DCopyMem.S32 # IN VOID *Destination,
42 movq %rcx, %rdi # rdi <- Destination
45 movq %rdi, %rax # rax <- Destination as return value
66 leaq -1(%rdi, %r8,), %rdi # rdi <- End of Destination
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptPei/Ia32/
H A DCopyMem.S30 # IN VOID *Destination,
39 movl 12(%esp), %edi # edi <- Destination
51 leal -1(%edi, %edx), %edi # edi <- End of Destination
59 movl 12(%esp), %eax # eax <- Destination as return value
H A DCopyMem.asm31 ; IN VOID *Destination,
38 mov edi, [esp+12] ; edi <- Destination
50 lea edi, [edi + edx - 1] ; edi <- End of Destination
57 mov eax, [esp + 12] ; eax <- Destination as return value
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptPei/X64/
H A DCopyMem.S32 # IN VOID *Destination,
42 movq %rcx, %rdi # rdi <- Destination
45 movq %rdi, %rax # rax <- Destination as return value
57 leaq -1(%rdi, %r8), %rdi # rdi <- End of Destination
H A DCopyMem.asm30 ; IN VOID *Destination,
37 mov rdi, rcx ; rdi <- Destination
40 mov rax, rdi ; rax <- Destination as return value
52 lea rdi, [rdi + r8 - 1] ; esi <- End of Destination
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibRepStr/Ia32/
H A DCopyMem.S30 # IN VOID *Destination,
39 movl 12(%esp), %edi # edi <- Destination
55 leal -1(%edi, %edx), %edi # edi <- End of Destination
62 movl 12(%esp), %eax # eax <- Destination as return value
H A DCopyMem.asm31 ; IN VOID *Destination,
38 mov edi, [esp + 12] ; edi <- Destination
53 lea edi, [edi + edx - 1] ; edi <- End of Destination
59 mov eax, [esp + 12] ; eax <- Destination as return value
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibRepStr/X64/
H A DCopyMem.S32 # IN VOID *Destination,
42 movq %rcx, %rdi # rdi <- Destination
45 movq %rdi, %rax # rax <- Destination as return value
57 leaq -1(%rdi, %r8), %rdi # esi <- End of Destination
H A DCopyMem.asm30 ; IN VOID *Destination,
37 mov rdi, rcx ; rdi <- Destination
40 mov rax, rdi ; rax <- Destination as return value
52 lea rdi, [rdi + r8 - 1] ; esi <- End of Destination
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibOptDxe/X64/
H A DCopyMem.S31 # IN VOID *Destination,
41 movq %rcx, %rdi # rdi <- Destination
44 movq %rdi, %rax # rax <- Destination as return value
45 jae L0 # Copy forward if Source > Destination
74 leaq -1(%rdi, %r8,), %rdi # rdi <- Last byte of Destination
H A DCopyMem.asm30 ; IN VOID *Destination,
37 mov rdi, rcx ; rdi <- Destination
40 mov rax, rdi ; rax <- Destination as return value
41 jae @F ; Copy forward if Source > Destination
70 lea rdi, [rdi + r8 - 1] ; rdi <- Last byte of Destination
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseMemoryLibSse2/X64/
H A DCopyMem.S32 # IN VOID *Destination,
42 movq %rcx, %rdi # rdi <- Destination
45 movq %rdi, %rax # rax <- Destination as return value
46 jae L0 # Copy forward if Source > Destination
75 leaq -1(%rdi, %r8,), %rdi # rdi <- Last byte of Destination

Completed in 180 milliseconds

1234