Searched defs:SourceBuffer (Results 1 - 25 of 40) sorted by relevance

12

/device/linaro/bootloader/edk2/ArmPkg/Library/BaseMemoryLibStm/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer Pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer Pointer to the source buffer of the memory copy.
40 @param Length Number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
H A DCopyMem.c26 @param SourceBuffer Place to copy from
36 IN CONST VOID *SourceBuffer,
48 if (SourceBuffer > DestinationBuffer) {
50 Source8 = (CONST UINT8*)SourceBuffer;
54 } else if (SourceBuffer < DestinationBuffer) {
56 Source8 = (CONST UINT8*)SourceBuffer + Length;
34 InternalMemCopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/ArmPkg/Library/BaseMemoryLibVstm/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer Pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer Pointer to the source buffer of the memory copy.
40 @param Length Number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
H A DCopyMem.c26 @param SourceBuffer Place to copy from
36 IN CONST VOID *SourceBuffer,
48 if (SourceBuffer > DestinationBuffer) {
50 Source8 = (CONST UINT8*)SourceBuffer;
54 } else if (SourceBuffer < DestinationBuffer) {
56 Source8 = (CONST UINT8*)SourceBuffer + Length;
34 InternalMemCopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/
H A DCompareMemWrapper.c27 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
29 value returned is the first mismatched byte in SourceBuffer subtracted from the first
32 If Length > 0 and SourceBuffer is NULL and Length > 0, then ASSERT().
34 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
38 @param SourceBuffer Pointer to the source buffer to compare.
42 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
50 IN CONST VOID *SourceBuffer,
54 if (Length == 0 || DestinationBuffer == SourceBuffer) {
58 ASSERT (SourceBuffer != NULL);
60 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
48 GlueCompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c27 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
29 where SourceBuffer overlaps DestinationBuffer.
31 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
34 @param SourceBuffer Pointer to the source buffer of the memory copy.
35 @param Length Number of bytes to copy from SourceBuffer to DestinationBuffer.
44 IN CONST VOID *SourceBuffer,
52 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
54 if (DestinationBuffer == SourceBuffer) {
57 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
42 GlueCopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLib/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer A pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer A pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
H A DCopyMem.c26 @param SourceBuffer The place to copy from.
36 IN CONST VOID *SourceBuffer,
48 if (SourceBuffer > DestinationBuffer) {
50 Source8 = (CONST UINT8*)SourceBuffer;
54 } else if (SourceBuffer < DestinationBuffer) {
56 Source8 = (CONST UINT8*)SourceBuffer + Length;
34 InternalMemCopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibMmx/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptDxe/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibOptPei/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibRepStr/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/BaseMemoryLibSse2/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/PeiMemoryLib/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
/device/linaro/bootloader/edk2/MdePkg/Library/UefiMemoryLib/
H A DCompareMemWrapper.c30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
41 @param SourceBuffer The pointer to the source buffer to compare.
45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first
53 IN CONST VOID *SourceBuffer,
57 if (Length == 0 || DestinationBuffer == SourceBuffer) {
61 ASSERT (SourceBuffer != NULL);
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
51 CompareMem( IN CONST VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument
[all...]
H A DCopyMemWrapper.c31 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
33 where SourceBuffer overlaps DestinationBuffer.
36 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
39 @param SourceBuffer The pointer to the source buffer of the memory copy.
40 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
49 IN CONST VOID *SourceBuffer,
57 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));
59 if (DestinationBuffer == SourceBuffer) {
62 return InternalMemCopyMem (DestinationBuffer, SourceBuffer, Length);
47 CopyMem( OUT VOID *DestinationBuffer, IN CONST VOID *SourceBuffer, IN UINTN Length ) argument

Completed in 460 milliseconds

12