Home | History | Annotate | Download | only in UefiMemoryLib

Lines Matching refs:SourceBuffer

30   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));
65 return InternalMemCompareMem (DestinationBuffer, SourceBuffer, Length);