]> git.proxmox.com Git - mirror_edk2.git/blame - MdePkg/Library/BaseMemoryLibOptPei/CompareMemWrapper.c
Minor grammatical work--mostly adding periods. Items with ONLY period added did...
[mirror_edk2.git] / MdePkg / Library / BaseMemoryLibOptPei / CompareMemWrapper.c
CommitLineData
7b3b4b29 1/** @file\r
2 CompareMem() implementation.\r
3\r
2bfb6009 4 The following BaseMemoryLib instances contain the same copy of this file:\r
7b3b4b29 5 BaseMemoryLib\r
6 BaseMemoryLibMmx\r
7 BaseMemoryLibSse2\r
8 BaseMemoryLibRepStr\r
2bfb6009
LG
9 BaseMemoryLibOptDxe\r
10 BaseMemoryLibOptPei\r
7b3b4b29 11 PeiMemoryLib\r
1fef058f 12 UefiMemoryLib\r
7b3b4b29 13\r
2fc59a00 14Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>\r
84b5877f 15This program and the accompanying materials\r
eb1c78db 16are licensed and made available under the terms and conditions of the BSD License\r
17which accompanies this distribution. The full text of the license may be found at\r
2fc59a00 18http://opensource.org/licenses/bsd-license.php.\r
1efcc4ae 19\r
eb1c78db 20THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,\r
21WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.\r
7b3b4b29 22\r
eb1c78db 23**/\r
7b3b4b29 24\r
25#include "MemLibInternals.h"\r
26\r
27/**\r
28 Compares the contents of two buffers.\r
29\r
30 This function compares Length bytes of SourceBuffer to Length bytes of DestinationBuffer.\r
31 If all Length bytes of the two buffers are identical, then 0 is returned. Otherwise, the\r
32 value returned is the first mismatched byte in SourceBuffer subtracted from the first\r
33 mismatched byte in DestinationBuffer.\r
efb23117 34 \r
2bfb6009
LG
35 If Length > 0 and DestinationBuffer is NULL, then ASSERT().\r
36 If Length > 0 and SourceBuffer is NULL, then ASSERT().\r
eb1c78db 37 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().\r
38 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().\r
7b3b4b29 39\r
2fc59a00 40 @param DestinationBuffer The pointer to the destination buffer to compare.\r
41 @param SourceBuffer The pointer to the source buffer to compare.\r
42 @param Length The number of bytes to compare.\r
7b3b4b29 43\r
eb1c78db 44 @return 0 All Length bytes of the two buffers are identical.\r
7b3b4b29 45 @retval Non-zero The first mismatched byte in SourceBuffer subtracted from the first\r
46 mismatched byte in DestinationBuffer.\r
efb23117 47 \r
7b3b4b29 48**/\r
49INTN\r
50EFIAPI\r
51CompareMem (\r
52 IN CONST VOID *DestinationBuffer,\r
53 IN CONST VOID *SourceBuffer,\r
54 IN UINTN Length\r
55 )\r
56{\r
cc4e0485 57 if (Length == 0 || DestinationBuffer == SourceBuffer) {\r
7b3b4b29 58 return 0;\r
59 }\r
60 ASSERT (DestinationBuffer != NULL);\r
61 ASSERT (SourceBuffer != NULL);\r
62 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)DestinationBuffer));\r
63 ASSERT ((Length - 1) <= (MAX_ADDRESS - (UINTN)SourceBuffer));\r
64\r
65 return InternalMemCompareMem (DestinationBuffer, SourceBuffer, Length);\r
66}\r