HomeSort by relevance Sort by last modified time
    Searched refs:DestinationBuffer (Results 1 - 25 of 92) sorted by null

1 2 3 4

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
CopyMemWrapper.c 27 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
28 DestinationBuffer. The implementation must be reentrant, and it must handle the case
29 where SourceBuffer overlaps DestinationBuffer.
30 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
33 @param DestinationBuffer Pointer to the destination buffer of the memory copy.
35 @param Length Number of bytes to copy from SourceBuffer to DestinationBuffer.
37 @return DestinationBuffer.
43 OUT VOID *DestinationBuffer,
49 return DestinationBuffer;
51 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 27 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
30 mismatched byte in DestinationBuffer.
31 If Length > 0 and DestinationBuffer is NULL and Length > 0, then ASSERT().
33 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
37 @param DestinationBuffer Pointer to the destination buffer to compare.
43 mismatched byte in DestinationBuffer.
49 IN CONST VOID *DestinationBuffer,
54 if (Length == 0 || DestinationBuffer == SourceBuffer) {
57 ASSERT (DestinationBuffer != NULL);
59 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer A pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer A pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CopyMem.c 28 @param DestinationBuffer The target of the copy request.
38 OUT VOID *DestinationBuffer,
56 if ((((UINTN)DestinationBuffer & 0x7) == 0) && (((UINTN)SourceBuffer & 0x7) == 0) && (Length >= 8)) {
57 if (SourceBuffer > DestinationBuffer) {
58 Destination64 = (UINT64*)DestinationBuffer;
71 } else if (SourceBuffer < DestinationBuffer) {
72 Destination64 = (UINT64*)((UINTN)DestinationBuffer + Length);
97 } else if ((((UINTN)DestinationBuffer & 0x3) == 0) && (((UINTN)SourceBuffer & 0x3) == 0) && (Length >= 4)) {
98 if (SourceBuffer > DestinationBuffer) {
99 Destination32 = (UINT32*)DestinationBuffer;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibMmx/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
CopyMemWrapper.c 31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
32 DestinationBuffer. The implementation must be reentrant, and it must handle the case
33 where SourceBuffer overlaps DestinationBuffer.
35 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
38 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
42 @return DestinationBuffer.
48 OUT VOID *DestinationBuffer,
54 return DestinationBuffer;
56 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
CompareMemWrapper.c 30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
33 mismatched byte in DestinationBuffer.
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().
37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
40 @param DestinationBuffer The pointer to the destination buffer to compare.
46 mismatched byte in DestinationBuffer.
52 IN CONST VOID *DestinationBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
60 ASSERT (DestinationBuffer != NULL);
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
SmmMemLib.h 47 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
49 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
58 OUT VOID *DestinationBuffer,
72 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
74 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
83 OUT VOID *DestinationBuffer,
97 @param DestinationBuffer The pointer to the destination buffer of the memory copy.
99 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
109 OUT VOID *DestinationBuffer,
  /hardware/interfaces/cas/native/1.0/
IDescrambler.hal 36 * @param dstBuffer the DestinationBuffer to hold the descrambled data.
44 SharedBuffer srcBuffer, uint64_t srcOffset, DestinationBuffer dstBuffer, uint64_t dstOffset)
types.hal 71 struct DestinationBuffer {
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/
MemLibGeneric.c 119 @param DestinationBuffer First memory buffer
121 @param Length Length of DestinationBuffer and SourceBuffer memory
130 IN CONST VOID *DestinationBuffer,
136 (*(INT8*)DestinationBuffer == *(INT8*)SourceBuffer)) {
137 DestinationBuffer = (INT8*)DestinationBuffer + 1;
140 return (INTN)*(UINT8*)DestinationBuffer - (INTN)*(UINT8*)SourceBuffer;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/
MemLibGeneric.c 119 @param DestinationBuffer First memory buffer
121 @param Length Length of DestinationBuffer and SourceBuffer memory
130 IN CONST VOID *DestinationBuffer,
136 (*(INT8*)DestinationBuffer == *(INT8*)SourceBuffer)) {
137 DestinationBuffer = (INT8*)DestinationBuffer + 1;
140 return (INTN)*(UINT8*)DestinationBuffer - (INTN)*(UINT8*)SourceBuffer;
  /frameworks/av/media/libmedia/include/media/
ICrypto.h 61 struct DestinationBuffer {
71 const DestinationBuffer &destination, AString *errorDetailMsg) = 0;

Completed in 1411 milliseconds

1 2 3 4