]> git.proxmox.com Git - mirror_edk2.git/blobdiff - MdePkg/Library/BaseLib/String.c
Synchronize function comment in MdePkg\Library\BaseLib.h with the instance of this...
[mirror_edk2.git] / MdePkg / Library / BaseLib / String.c
index c6a200da3ce932e37323b5fe174bfd34d9087929..e056fa06cbe529a323923e53d15d9711bb510e60 100644 (file)
   If Source is not aligned on a 16-bit boundary, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and Source contains more than\r
-  PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  Destination Pointer to a Null-terminated Unicode string.\r
   @param  Source      Pointer to a Null-terminated Unicode string.\r
 \r
-  @return Destination pointing to the copied string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR16 *\r
@@ -79,9 +79,8 @@ StrCpy (
 }\r
 \r
 /**\r
-  Copies one Null-terminated Unicode string with a maximum length to another\r
-  Null-terminated Unicode string with a maximum length and returns the new\r
-  Unicode string.\r
+  Copies up to a specified length from one Null-terminated Unicode string  to \r
+  another Null-terminated Unicode string and returns the new Unicode string.\r
 \r
   This function copies the contents of the Unicode string Source to the Unicode\r
   string Destination, and returns Destination. At most, Length Unicode\r
@@ -97,14 +96,14 @@ StrCpy (
   If Length > 0 and Source is not aligned on a 16-bit bounadry, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and Source contains more than\r
-  PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  Destination Pointer to a Null-terminated Unicode string.\r
   @param  Source      Pointer to a Null-terminated Unicode string.\r
   @param  Length      Maximum number of Unicode characters to copy.\r
 \r
-  @return Destination pointing to the copied string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR16 *\r
@@ -153,7 +152,7 @@ StrnCpy (
   If String is NULL, then ASSERT().\r
   If String is not aligned on a 16-bit boundary, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
-  PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  String  Pointer to a Null-terminated Unicode string.\r
@@ -188,18 +187,18 @@ StrLen (
   Returns the size of a Null-terminated Unicode string in bytes, including the\r
   Null terminator.\r
 \r
-  This function returns the size, in bytes, of the Null-terminated Unicode\r
-  string specified by String.\r
+  This function returns the size, in bytes, of the Null-terminated Unicode string \r
+  specified by String.\r
 \r
   If String is NULL, then ASSERT().\r
   If String is not aligned on a 16-bit boundary, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
-  PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  String  Pointer to a Null-terminated Unicode string.\r
 \r
-  @return The size in bytes of String.\r
+  @return The size of String.\r
 \r
 **/\r
 UINTN\r
@@ -226,18 +225,17 @@ StrSize (
   If SecondString is NULL, then ASSERT().\r
   If SecondString is not aligned on a 16-bit boundary, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and FirstString contains more\r
-  than PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  than PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and SecondString contains more\r
-  than PcdMaximumUnicodeStringLength Unicode characters not including the \r
+  than PcdMaximumUnicodeStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  FirstString   Pointer to a Null-terminated Unicode string.\r
   @param  SecondString  Pointer to a Null-terminated Unicode string.\r
 \r
   @retval 0      FirstString is identical to SecondString.\r
-  @return The first mismatched Unicode character in SecondString subtracted\r
-          from the first mismatched Unicode character in FirstString.\r
+  @return others FirstString is not identical to SecondString.\r
 \r
 **/\r
 INTN\r
@@ -261,8 +259,8 @@ StrCmp (
 }\r
 \r
 /**\r
-  Compares two Null-terminated Unicode strings with maximum lengths, and\r
-  returns the difference between the first mismatched Unicode characters.\r
+  Compares up to a specified length the contents of two Null-terminated Unicode strings,\r
+  and returns the difference between the first mismatched Unicode characters.\r
 \r
   This function compares the Null-terminated Unicode string FirstString to the\r
   Null-terminated Unicode string SecondString. At most, Length Unicode\r
@@ -287,8 +285,7 @@ StrCmp (
   @param  Length        Maximum number of Unicode characters to compare.\r
 \r
   @retval 0      FirstString is identical to SecondString.\r
-  @return The value returned is the first mismatched Unicode character in SecondString\r
-          subtracted from the first mismatched Unicode character in FirstString.\r
+  @return others FirstString is not identical to SecondString.\r
 \r
 **/\r
 INTN\r
@@ -332,7 +329,9 @@ StrnCmp (
   results are undefined.\r
 \r
   If Destination is NULL, then ASSERT().\r
+  If Destination is not aligned on a 16-bit bounadary, then ASSERT().\r
   If Source is NULL, then ASSERT().\r
+  If Source is not aligned on a 16-bit bounadary, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
   If PcdMaximumUnicodeStringLength is not zero, and Destination contains more\r
   than PcdMaximumUnicodeStringLength Unicode characters not including the\r
@@ -348,7 +347,7 @@ StrnCmp (
   @param  Destination Pointer to a Null-terminated Unicode string.\r
   @param  Source      Pointer to a Null-terminated Unicode string.\r
 \r
-  @return Destination pointing to the concatenated Unicode string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR16 *\r
@@ -369,8 +368,8 @@ StrCat (
 }\r
 \r
 /**\r
-  Concatenates one Null-terminated Unicode string with a maximum length to the\r
-  end of another Null-terminated Unicode string, and returns the concatenated\r
+  Concatenates up to a specified length one Null-terminated Unicode to the end \r
+  of another Null-terminated Unicode string, and returns the concatenated \r
   Unicode string.\r
 \r
   This function concatenates two Null-terminated Unicode strings. The contents\r
@@ -402,7 +401,7 @@ StrCat (
   @param  Length      Maximum number of Unicode characters to concatenate from\r
                       Source.\r
 \r
-  @return Destination pointing to the concatenated Unicode string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR16 *\r
@@ -424,29 +423,29 @@ StrnCat (
 }\r
 \r
 /**\r
-  Returns the first occurance of a Null-terminated Unicode sub-string \r
+  Returns the first occurrence of a Null-terminated Unicode sub-string\r
   in a Null-terminated Unicode string.\r
 \r
-  This function scans the contents of the Null-terminated Unicode string \r
-  specified by String and returns the first occurrence of SearchString.  \r
-  If SearchString is not found in String, then NULL is returned.  If \r
-  the length of SearchString is zero, then String is \r
+  This function scans the contents of the Null-terminated Unicode string\r
+  specified by String and returns the first occurrence of SearchString.\r
+  If SearchString is not found in String, then NULL is returned.  If\r
+  the length of SearchString is zero, then String is\r
   returned.\r
-  \r
+\r
   If String is NULL, then ASSERT().\r
   If String is not aligned on a 16-bit boundary, then ASSERT().\r
   If SearchString is NULL, then ASSERT().\r
   If SearchString is not aligned on a 16-bit boundary, then ASSERT().\r
 \r
-  If PcdMaximumUnicodeStringLength is not zero, and SearchString \r
-  or String contains more than PcdMaximumUnicodeStringLength Unicode \r
+  If PcdMaximumUnicodeStringLength is not zero, and SearchString\r
+  or String contains more than PcdMaximumUnicodeStringLength Unicode\r
   characters not including the Null-terminator, then ASSERT().\r
 \r
-  @param  String        Pointer to a Null-terminated Unicode string.\r
-  @param  SearchString  Pointer to a Null-terminated Unicode string to search for.\r
+  @param  String          Pointer to a Null-terminated Unicode string.\r
+  @param  SearchString    Pointer to a Null-terminated Unicode string to search for.\r
 \r
-  @retval NULL          If the SearchString does not appear in String.\r
-  @return Pointer to the matching sub-string.\r
+  @retval NULL            If the SearchString does not appear in String.\r
+  @return others          If there is a match.\r
 \r
 **/\r
 CHAR16 *\r
@@ -597,37 +596,37 @@ InternalIsHexaDecimalDigitCharacter (
 }\r
 \r
 /**\r
-  Convert a Null-terminated Unicode decimal string to a value of \r
+  Convert a Null-terminated Unicode decimal string to a value of\r
   type UINTN.\r
 \r
-  This function returns a value of type UINTN by interpreting the contents \r
-  of the Unicode string specified by String as a decimal number. The format \r
+  This function returns a value of type UINTN by interpreting the contents\r
+  of the Unicode string specified by String as a decimal number. The format\r
   of the input Unicode string String is:\r
-  \r
-                  [spaces] [decimal digits].\r
-                  \r
-  The valid decimal digit character is in the range [0-9]. The \r
-  function will ignore the pad space, which includes spaces or \r
-  tab characters, before [decimal digits]. The running zero in the \r
-  beginning of [decimal digits] will be ignored. Then, the function \r
-  stops at the first character that is a not a valid decimal character \r
-  or a Null-terminator, whichever one comes first. \r
-  \r
+\r
+                    [spaces] [decimal digits].\r
+\r
+  The valid decimal digit character is in the range [0-9]. The\r
+  function will ignore the pad space, which includes spaces or\r
+  tab characters, before [decimal digits]. The running zero in the\r
+  beginning of [decimal digits] will be ignored. Then, the function\r
+  stops at the first character that is a not a valid decimal character\r
+  or a Null-terminator, whichever one comes first.\r
+\r
   If String is NULL, then ASSERT().\r
-  If String is not aligned in a 16-bit boundary, then ASSERT().  \r
+  If String is not aligned in a 16-bit boundary, then ASSERT().\r
   If String has only pad spaces, then 0 is returned.\r
-  If String has no pad spaces or valid decimal digits, \r
+  If String has no pad spaces or valid decimal digits,\r
   then 0 is returned.\r
-  If the number represented by String overflows according \r
+  If the number represented by String overflows according\r
   to the range defined by UINTN, then ASSERT().\r
-  \r
-  If PcdMaximumUnicodeStringLength is not zero, and String contains \r
-  more than PcdMaximumUnicodeStringLength Unicode characters not including \r
+\r
+  If PcdMaximumUnicodeStringLength is not zero, and String contains\r
+  more than PcdMaximumUnicodeStringLength Unicode characters not including\r
   the Null-terminator, then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated Unicode string.\r
+  @param  String      Pointer to a Null-terminated Unicode string.\r
 \r
-  @return The value of type UINTN converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINTN\r
@@ -679,37 +678,37 @@ StrDecimalToUintn (
 \r
 \r
 /**\r
-  Convert a Null-terminated Unicode decimal string to a value of \r
+  Convert a Null-terminated Unicode decimal string to a value of\r
   type UINT64.\r
 \r
-  This function returns a value of type UINT64 by interpreting the contents \r
-  of the Unicode string specified by String as a decimal number. The format \r
+  This function returns a value of type UINT64 by interpreting the contents\r
+  of the Unicode string specified by String as a decimal number. The format\r
   of the input Unicode string String is:\r
-  \r
-                  [spaces] [decimal digits].\r
-                  \r
-  The valid decimal digit character is in the range [0-9]. The \r
-  function will ignore the pad space, which includes spaces or \r
-  tab characters, before [decimal digits]. The running zero in the \r
-  beginning of [decimal digits] will be ignored. Then, the function \r
-  stops at the first character that is a not a valid decimal character \r
-  or a Null-terminator, whichever one comes first. \r
-  \r
+\r
+                   [spaces] [decimal digits].\r
+\r
+  The valid decimal digit character is in the range [0-9]. The\r
+  function will ignore the pad space, which includes spaces or\r
+  tab characters, before [decimal digits]. The running zero in the\r
+  beginning of [decimal digits] will be ignored. Then, the function\r
+  stops at the first character that is a not a valid decimal character\r
+  or a Null-terminator, whichever one comes first.\r
+\r
   If String is NULL, then ASSERT().\r
-  If String is not aligned in a 16-bit boundary, then ASSERT().  \r
+  If String is not aligned in a 16-bit boundary, then ASSERT().\r
   If String has only pad spaces, then 0 is returned.\r
-  If String has no pad spaces or valid decimal digits, \r
+  If String has no pad spaces or valid decimal digits,\r
   then 0 is returned.\r
-  If the number represented by String overflows according \r
+  If the number represented by String overflows according\r
   to the range defined by UINT64, then ASSERT().\r
-  \r
-  If PcdMaximumUnicodeStringLength is not zero, and String contains \r
-  more than PcdMaximumUnicodeStringLength Unicode characters not including \r
+\r
+  If PcdMaximumUnicodeStringLength is not zero, and String contains\r
+  more than PcdMaximumUnicodeStringLength Unicode characters not including\r
   the Null-terminator, then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated Unicode string.\r
+  @param  String          Pointer to a Null-terminated Unicode string.\r
 \r
-  @return The value of type UINT64 converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINT64\r
@@ -762,36 +761,36 @@ StrDecimalToUint64 (
 /**\r
   Convert a Null-terminated Unicode hexadecimal string to a value of type UINTN.\r
 \r
-  This function returns a value of type UINTN by interpreting the contents \r
-  of the Unicode string specified by String as a hexadecimal number. \r
+  This function returns a value of type UINTN by interpreting the contents\r
+  of the Unicode string specified by String as a hexadecimal number.\r
   The format of the input Unicode string String is:\r
-  \r
-                  [spaces][zeros][x][hexadecimal digits]. \r
-\r
-  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F]. \r
-  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. \r
-  If "x" appears in the input string, it must be prefixed with at least one 0. \r
-  The function will ignore the pad space, which includes spaces or tab characters, \r
-  before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or \r
-  [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the \r
-  first valid hexadecimal digit. Then, the function stops at the first character that is \r
+\r
+                  [spaces][zeros][x][hexadecimal digits].\r
+\r
+  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
+  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
+  If "x" appears in the input string, it must be prefixed with at least one 0.\r
+  The function will ignore the pad space, which includes spaces or tab characters,\r
+  before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or\r
+  [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the\r
+  first valid hexadecimal digit. Then, the function stops at the first character that is\r
   a not a valid hexadecimal character or NULL, whichever one comes first.\r
 \r
   If String is NULL, then ASSERT().\r
   If String is not aligned in a 16-bit boundary, then ASSERT().\r
   If String has only pad spaces, then zero is returned.\r
-  If String has no leading pad spaces, leading zeros or valid hexadecimal digits, \r
+  If String has no leading pad spaces, leading zeros or valid hexadecimal digits,\r
   then zero is returned.\r
-  If the number represented by String overflows according to the range defined by \r
+  If the number represented by String overflows according to the range defined by\r
   UINTN, then ASSERT().\r
 \r
-  If PcdMaximumUnicodeStringLength is not zero, and String contains more than \r
-  PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, \r
+  If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
+  PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator,\r
   then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated Unicode string.\r
+  @param  String          Pointer to a Null-terminated Unicode string.\r
 \r
-  @return The value of type UINTN converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINTN\r
@@ -856,38 +855,38 @@ StrHexToUintn (
 /**\r
   Convert a Null-terminated Unicode hexadecimal string to a value of type UINT64.\r
 \r
-  This function returns a value of type UINT64 by interpreting the contents \r
-  of the Unicode string specified by String as a hexadecimal number. \r
-  The format of the input Unicode string String is \r
-  \r
-                  [spaces][zeros][x][hexadecimal digits]. \r
-\r
-  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F]. \r
-  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. \r
-  If "x" appears in the input string, it must be prefixed with at least one 0. \r
-  The function will ignore the pad space, which includes spaces or tab characters, \r
-  before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or \r
-  [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the \r
-  first valid hexadecimal digit. Then, the function stops at the first character that is \r
+  This function returns a value of type UINT64 by interpreting the contents\r
+  of the Unicode string specified by String as a hexadecimal number.\r
+  The format of the input Unicode string String is\r
+\r
+                  [spaces][zeros][x][hexadecimal digits].\r
+\r
+  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
+  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix.\r
+  If "x" appears in the input string, it must be prefixed with at least one 0.\r
+  The function will ignore the pad space, which includes spaces or tab characters,\r
+  before [zeros], [x] or [hexadecimal digit]. The running zero before [x] or\r
+  [hexadecimal digit] will be ignored. Then, the decoding starts after [x] or the\r
+  first valid hexadecimal digit. Then, the function stops at the first character that is\r
   a not a valid hexadecimal character or NULL, whichever one comes first.\r
 \r
   If String is NULL, then ASSERT().\r
   If String is not aligned in a 16-bit boundary, then ASSERT().\r
   If String has only pad spaces, then zero is returned.\r
-  If String has no leading pad spaces, leading zeros or valid hexadecimal digits, \r
+  If String has no leading pad spaces, leading zeros or valid hexadecimal digits,\r
   then zero is returned.\r
-  If the number represented by String overflows according to the range defined by \r
+  If the number represented by String overflows according to the range defined by\r
   UINT64, then ASSERT().\r
 \r
-  If PcdMaximumUnicodeStringLength is not zero, and String contains more than \r
-  PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator, \r
+  If PcdMaximumUnicodeStringLength is not zero, and String contains more than\r
+  PcdMaximumUnicodeStringLength Unicode characters not including the Null-terminator,\r
   then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated Unicode string.\r
+  @param  String          Pointer to a Null-terminated Unicode string.\r
 \r
-  @return The value of type UINT64 converted.\r
+  @retval Value translated from String.\r
 \r
-**/\r
+  **/\r
 UINT64\r
 EFIAPI\r
 StrHexToUint64 (\r
@@ -996,36 +995,33 @@ InternalAsciiIsHexaDecimalDigitCharacter (
 }\r
 \r
 /**\r
-  Convert a Null-terminated Unicode string to a Null-terminated \r
+  Convert a Null-terminated Unicode string to a Null-terminated\r
   ASCII string and returns the ASCII string.\r
-  \r
-  This function converts the content of the Unicode string Source \r
-  to the ASCII string Destination by copying the lower 8 bits of \r
-  each Unicode character. It returns Destination. The function terminates \r
-  the ASCII string Destination  by appending a Null-terminator character \r
-  at the end. The caller is responsible to make sure Destination points \r
-  to a buffer with size equal or greater than (StrLen (Source) + 1) in bytes.\r
+\r
+  This function converts the content of the Unicode string Source\r
+  to the ASCII string Destination by copying the lower 8 bits of\r
+  each Unicode character. It returns Destination.\r
+\r
+  If any Unicode characters in Source contain non-zero value in\r
+  the upper 8 bits, then ASSERT().\r
 \r
   If Destination is NULL, then ASSERT().\r
   If Source is NULL, then ASSERT().\r
   If Source is not aligned on a 16-bit boundary, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
 \r
-  If any Unicode characters in Source contain non-zero value in \r
-  the upper 8 bits, then ASSERT().\r
-  \r
-  If PcdMaximumUnicodeStringLength is not zero, and Source contains \r
-  more than PcdMaximumUnicodeStringLength Unicode characters not including \r
+  If PcdMaximumUnicodeStringLength is not zero, and Source contains\r
+  more than PcdMaximumUnicodeStringLength Unicode characters not including\r
   the Null-terminator, then ASSERT().\r
-  \r
-  If PcdMaximumAsciiStringLength is not zero, and Source contains more \r
-  than PcdMaximumAsciiStringLength Unicode characters not including the \r
+\r
+  If PcdMaximumAsciiStringLength is not zero, and Source contains more\r
+  than PcdMaximumAsciiStringLength Unicode characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  Source        Pointer to a Null-terminated Unicode string.\r
   @param  Destination   Pointer to a Null-terminated ASCII string.\r
 \r
-  @return Destination pointing to the converted ASCII string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR8 *\r
@@ -1092,7 +1088,7 @@ UnicodeStrToAsciiStr (
   @param  Destination Pointer to a Null-terminated ASCII string.\r
   @param  Source      Pointer to a Null-terminated ASCII string.\r
 \r
-  @return Destination pointing to the copied string.\r
+  @return Destination\r
 \r
 **/\r
 CHAR8 *\r
@@ -1124,9 +1120,8 @@ AsciiStrCpy (
 }\r
 \r
 /**\r
-  Copies one Null-terminated ASCII string with a maximum length to another\r
-  Null-terminated ASCII string with a maximum length and returns the new ASCII\r
-  string.\r
+  Copies up to a specified length one Null-terminated ASCII string to another \r
+  Null-terminated ASCII string and returns the new ASCII string.\r
 \r
   This function copies the contents of the ASCII string Source to the ASCII\r
   string Destination, and returns Destination. At most, Length ASCII characters\r
@@ -1146,7 +1141,7 @@ AsciiStrCpy (
   @param  Source      Pointer to a Null-terminated ASCII string.\r
   @param  Length      Maximum number of ASCII characters to copy.\r
 \r
-  @return Destination pointing to the copied string.\r
+  @return Destination\r
 \r
 **/\r
 CHAR8 *\r
@@ -1191,7 +1186,8 @@ AsciiStrnCpy (
   This function returns the number of ASCII characters in the Null-terminated\r
   ASCII string specified by String.\r
 \r
-  If String is NULL, then ASSERT().\r
+  If Length > 0 and Destination is NULL, then ASSERT().\r
+  If Length > 0 and Source is NULL, then ASSERT().\r
   If PcdMaximumAsciiStringLength is not zero and String contains more than\r
   PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
   then ASSERT().\r
@@ -1271,9 +1267,8 @@ AsciiStrSize (
   @param  FirstString   Pointer to a Null-terminated ASCII string.\r
   @param  SecondString  Pointer to a Null-terminated ASCII string.\r
 \r
-  @retval 0      FirstString is identical to SecondString.\r
-  @return The first mismatched ASCII character in SecondString subtracted\r
-          from the first mismatched ASCII character in FirstString.\r
+  @retval ==0      FirstString is identical to SecondString.\r
+  @retval !=0      FirstString is not identical to SecondString.\r
 \r
 **/\r
 INTN\r
@@ -1369,10 +1364,10 @@ InternalAsciiHexCharToUintn (
   @param  FirstString   Pointer to a Null-terminated ASCII string.\r
   @param  SecondString  Pointer to a Null-terminated ASCII string.\r
 \r
-  @retval 0      FirstString is identical to SecondString using case insensitive\r
+  @retval ==0    FirstString is identical to SecondString using case insensitive\r
                  comparisons.\r
-  @return The first mismatched lower case ASCII character in SecondString subtracted\r
-          from the first mismatched lower case ASCII character in FirstString.\r
+  @retval !=0    FirstString is not identical to SecondString using case\r
+                 insensitive comparisons.\r
 \r
 **/\r
 INTN\r
@@ -1414,8 +1409,8 @@ AsciiStriCmp (
   is the first mismatched ASCII character in SecondString subtracted from the\r
   first mismatched ASCII character in FirstString.\r
 \r
-  If FirstString is NULL, then ASSERT().\r
-  If SecondString is NULL, then ASSERT().\r
+  If Length > 0 and FirstString is NULL, then ASSERT().\r
+  If Length > 0 and SecondString is NULL, then ASSERT().\r
   If PcdMaximumAsciiStringLength is not zero and FirstString contains more than\r
   PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
   then ASSERT().\r
@@ -1425,11 +1420,10 @@ AsciiStriCmp (
 \r
   @param  FirstString   Pointer to a Null-terminated ASCII string.\r
   @param  SecondString  Pointer to a Null-terminated ASCII string.\r
-  @param  Length        Maximum number of ASCII characters to compare.\r
-                        \r
-  @retval 0      FirstString is identical to SecondString.\r
-  @return The first mismatched ASCII character in SecondString subtracted from the\r
-          first mismatched ASCII character in FirstString.\r
+  @param  Length        Maximum number of ASCII characters for compare.\r
+\r
+  @retval ==0       FirstString is identical to SecondString.\r
+  @retval !=0       FirstString is not identical to SecondString.\r
 \r
 **/\r
 INTN\r
@@ -1484,7 +1478,7 @@ AsciiStrnCmp (
   @param  Destination Pointer to a Null-terminated ASCII string.\r
   @param  Source      Pointer to a Null-terminated ASCII string.\r
 \r
-  @return Destination pointing to the concatenated ASCII string.\r
+  @return Destination\r
 \r
 **/\r
 CHAR8 *\r
@@ -1505,9 +1499,9 @@ AsciiStrCat (
 }\r
 \r
 /**\r
-  Concatenates one Null-terminated ASCII string with a maximum length to the\r
-  end of another Null-terminated ASCII string, and returns the concatenated\r
-  ASCII string.\r
+  Concatenates up to a specified length one Null-terminated ASCII string to \r
+  the end of another Null-terminated ASCII string, and returns the \r
+  concatenated ASCII string.\r
 \r
   This function concatenates two Null-terminated ASCII strings. The contents\r
   of Null-terminated ASCII string Source are concatenated to the end of Null-\r
@@ -1517,8 +1511,8 @@ AsciiStrCat (
   Destination is returned unmodified. If Source and Destination overlap, then\r
   the results are undefined.\r
 \r
-  If Destination is NULL, then ASSERT().\r
-  If Source is NULL, then ASSERT().\r
+  If Length > 0 and Destination is NULL, then ASSERT().\r
+  If Length > 0 and Source is NULL, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
   If PcdMaximumAsciiStringLength is not zero, and Destination contains more than\r
   PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
@@ -1535,7 +1529,7 @@ AsciiStrCat (
   @param  Length      Maximum number of ASCII characters to concatenate from\r
                       Source.\r
 \r
-  @return Destination pointing to the concatenated ASCII string.\r
+  @return Destination\r
 \r
 **/\r
 CHAR8 *\r
@@ -1557,26 +1551,27 @@ AsciiStrnCat (
 }\r
 \r
 /**\r
-  Returns the first occurance of a Null-terminated ASCII sub-string \r
+  Returns the first occurrence of a Null-terminated ASCII sub-string\r
   in a Null-terminated ASCII string.\r
 \r
-  This function scans the contents of the ASCII string specified by String \r
-  and returns the first occurrence of SearchString. If SearchString is not \r
-  found in String, then NULL is returned. If the length of SearchString is zero, \r
+  This function scans the contents of the ASCII string specified by String\r
+  and returns the first occurrence of SearchString. If SearchString is not\r
+  found in String, then NULL is returned. If the length of SearchString is zero,\r
   then String is returned.\r
-  \r
+\r
   If String is NULL, then ASSERT().\r
   If SearchString is NULL, then ASSERT().\r
 \r
-  If PcdMaximumAsciiStringLength is not zero, and SearchString or \r
-  String contains more than PcdMaximumAsciiStringLength Unicode characters \r
+  If PcdMaximumAsciiStringLength is not zero, and SearchString or\r
+  String contains more than PcdMaximumAsciiStringLength Unicode characters\r
   not including the Null-terminator, then ASSERT().\r
 \r
   @param  String          Pointer to a Null-terminated ASCII string.\r
   @param  SearchString    Pointer to a Null-terminated ASCII string to search for.\r
 \r
   @retval NULL            If the SearchString does not appear in String.\r
-  @return Pointer to the matching sub-string.\r
+  @retval others          If there is a match return the first occurrence of SearchingString.\r
+                          If the length of SearchString is zero,return String.\r
 \r
 **/\r
 CHAR8 *\r
@@ -1625,33 +1620,33 @@ AsciiStrStr (
 }\r
 \r
 /**\r
-  Convert a Null-terminated ASCII decimal string to a value of type \r
+  Convert a Null-terminated ASCII decimal string to a value of type\r
   UINTN.\r
 \r
-  This function returns a value of type UINTN by interpreting the contents \r
-  of the ASCII string String as a decimal number. The format of the input \r
+  This function returns a value of type UINTN by interpreting the contents\r
+  of the ASCII string String as a decimal number. The format of the input\r
   ASCII string String is:\r
-  \r
+\r
                     [spaces] [decimal digits].\r
-  \r
-  The valid decimal digit character is in the range [0-9]. The function will \r
-  ignore the pad space, which includes spaces or tab characters, before the digits. \r
-  The running zero in the beginning of [decimal digits] will be ignored. Then, the \r
-  function stops at the first character that is a not a valid decimal character or \r
+\r
+  The valid decimal digit character is in the range [0-9]. The function will\r
+  ignore the pad space, which includes spaces or tab characters, before the digits.\r
+  The running zero in the beginning of [decimal digits] will be ignored. Then, the\r
+  function stops at the first character that is a not a valid decimal character or\r
   Null-terminator, whichever on comes first.\r
-  \r
+\r
   If String has only pad spaces, then 0 is returned.\r
   If String has no pad spaces or valid decimal digits, then 0 is returned.\r
-  If the number represented by String overflows according to the range defined by \r
+  If the number represented by String overflows according to the range defined by\r
   UINTN, then ASSERT().\r
   If String is NULL, then ASSERT().\r
-  If PcdMaximumAsciiStringLength is not zero, and String contains more than \r
-  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator, \r
+  If PcdMaximumAsciiStringLength is not zero, and String contains more than\r
+  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
   then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated ASCII string.\r
+  @param  String          Pointer to a Null-terminated ASCII string.\r
 \r
-  @return The value of type UINTN converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINTN\r
@@ -1702,33 +1697,33 @@ AsciiStrDecimalToUintn (
 \r
 \r
 /**\r
-  Convert a Null-terminated ASCII decimal string to a value of type \r
+  Convert a Null-terminated ASCII decimal string to a value of type\r
   UINT64.\r
 \r
-  This function returns a value of type UINT64 by interpreting the contents \r
-  of the ASCII string String as a decimal number. The format of the input \r
+  This function returns a value of type UINT64 by interpreting the contents\r
+  of the ASCII string String as a decimal number. The format of the input\r
   ASCII string String is:\r
-  \r
+\r
                     [spaces] [decimal digits].\r
-  \r
-  The valid decimal digit character is in the range [0-9]. The function will \r
-  ignore the pad space, which includes spaces or tab characters, before the digits. \r
-  The running zero in the beginning of [decimal digits] will be ignored. Then, the \r
-  function stops at the first character that is a not a valid decimal character or \r
+\r
+  The valid decimal digit character is in the range [0-9]. The function will\r
+  ignore the pad space, which includes spaces or tab characters, before the digits.\r
+  The running zero in the beginning of [decimal digits] will be ignored. Then, the\r
+  function stops at the first character that is a not a valid decimal character or\r
   Null-terminator, whichever on comes first.\r
-  \r
+\r
   If String has only pad spaces, then 0 is returned.\r
   If String has no pad spaces or valid decimal digits, then 0 is returned.\r
-  If the number represented by String overflows according to the range defined by \r
+  If the number represented by String overflows according to the range defined by\r
   UINT64, then ASSERT().\r
   If String is NULL, then ASSERT().\r
-  If PcdMaximumAsciiStringLength is not zero, and String contains more than \r
-  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator, \r
+  If PcdMaximumAsciiStringLength is not zero, and String contains more than\r
+  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
   then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated ASCII string.\r
+  @param  String          Pointer to a Null-terminated ASCII string.\r
 \r
-  @return The value of type UINT64 converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINT64\r
@@ -1780,35 +1775,35 @@ AsciiStrDecimalToUint64 (
 /**\r
   Convert a Null-terminated ASCII hexadecimal string to a value of type UINTN.\r
 \r
-  This function returns a value of type UINTN by interpreting the contents of \r
-  the ASCII string String as a hexadecimal number. The format of the input ASCII \r
+  This function returns a value of type UINTN by interpreting the contents of\r
+  the ASCII string String as a hexadecimal number. The format of the input ASCII\r
   string String is:\r
-  \r
+\r
                   [spaces][zeros][x][hexadecimal digits].\r
-                  \r
-  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F]. \r
-  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x" \r
-  appears in the input string, it must be prefixed with at least one 0. The function \r
-  will ignore the pad space, which includes spaces or tab characters, before [zeros], \r
-  [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits] \r
-  will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal \r
-  digit. Then, the function stops at the first character that is a not a valid \r
+\r
+  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
+  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x"\r
+  appears in the input string, it must be prefixed with at least one 0. The function\r
+  will ignore the pad space, which includes spaces or tab characters, before [zeros],\r
+  [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits]\r
+  will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal\r
+  digit. Then, the function stops at the first character that is a not a valid\r
   hexadecimal character or Null-terminator, whichever on comes first.\r
-  \r
+\r
   If String has only pad spaces, then 0 is returned.\r
   If String has no leading pad spaces, leading zeros or valid hexadecimal digits, then\r
   0 is returned.\r
 \r
-  If the number represented by String overflows according to the range defined by UINTN, \r
+  If the number represented by String overflows according to the range defined by UINTN,\r
   then ASSERT().\r
   If String is NULL, then ASSERT().\r
-  If PcdMaximumAsciiStringLength is not zero, \r
-  and String contains more than PcdMaximumAsciiStringLength ASCII characters not including \r
+  If PcdMaximumAsciiStringLength is not zero,\r
+  and String contains more than PcdMaximumAsciiStringLength ASCII characters not including\r
   the Null-terminator, then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated ASCII string.\r
+  @param  String          Pointer to a Null-terminated ASCII string.\r
 \r
-  @return The value of type UINTN converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINTN\r
@@ -1872,35 +1867,35 @@ AsciiStrHexToUintn (
 /**\r
   Convert a Null-terminated ASCII hexadecimal string to a value of type UINT64.\r
 \r
-  This function returns a value of type UINT64 by interpreting the contents of \r
-  the ASCII string String as a hexadecimal number. The format of the input ASCII \r
+  This function returns a value of type UINT64 by interpreting the contents of\r
+  the ASCII string String as a hexadecimal number. The format of the input ASCII\r
   string String is:\r
-  \r
+\r
                   [spaces][zeros][x][hexadecimal digits].\r
-                  \r
-  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F]. \r
-  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x" \r
-  appears in the input string, it must be prefixed with at least one 0. The function \r
-  will ignore the pad space, which includes spaces or tab characters, before [zeros], \r
-  [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits] \r
-  will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal \r
-  digit. Then, the function stops at the first character that is a not a valid \r
+\r
+  The valid hexadecimal digit character is in the range [0-9], [a-f] and [A-F].\r
+  The prefix "0x" is optional. Both "x" and "X" is allowed in "0x" prefix. If "x"\r
+  appears in the input string, it must be prefixed with at least one 0. The function\r
+  will ignore the pad space, which includes spaces or tab characters, before [zeros],\r
+  [x] or [hexadecimal digits]. The running zero before [x] or [hexadecimal digits]\r
+  will be ignored. Then, the decoding starts after [x] or the first valid hexadecimal\r
+  digit. Then, the function stops at the first character that is a not a valid\r
   hexadecimal character or Null-terminator, whichever on comes first.\r
-  \r
+\r
   If String has only pad spaces, then 0 is returned.\r
   If String has no leading pad spaces, leading zeros or valid hexadecimal digits, then\r
   0 is returned.\r
 \r
-  If the number represented by String overflows according to the range defined by UINT64, \r
+  If the number represented by String overflows according to the range defined by UINT64,\r
   then ASSERT().\r
   If String is NULL, then ASSERT().\r
-  If PcdMaximumAsciiStringLength is not zero, \r
-  and String contains more than PcdMaximumAsciiStringLength ASCII characters not including \r
+  If PcdMaximumAsciiStringLength is not zero,\r
+  and String contains more than PcdMaximumAsciiStringLength ASCII characters not including\r
   the Null-terminator, then ASSERT().\r
 \r
-  @param  String                Pointer to a Null-terminated ASCII string.\r
+  @param  String          Pointer to a Null-terminated ASCII string.\r
 \r
-  @return The value of type UINT64 converted.\r
+  @retval Value translated from String.\r
 \r
 **/\r
 UINT64\r
@@ -1966,30 +1961,30 @@ AsciiStrHexToUint64 (
 \r
 \r
 /**\r
-  Convert one Null-terminated ASCII string to a Null-terminated \r
+  Convert one Null-terminated ASCII string to a Null-terminated\r
   Unicode string and returns the Unicode string.\r
 \r
-  This function converts the contents of the ASCII string Source to the Unicode \r
-  string Destination, and returns Destination.  The function terminates the \r
-  Unicode string Destination by appending a Null-terminator character at the end. \r
-  The caller is responsible to make sure Destination points to a buffer with size \r
+  This function converts the contents of the ASCII string Source to the Unicode\r
+  string Destination, and returns Destination.  The function terminates the\r
+  Unicode string Destination by appending a Null-terminator character at the end.\r
+  The caller is responsible to make sure Destination points to a buffer with size\r
   equal or greater than ((AsciiStrLen (Source) + 1) * sizeof (CHAR16)) in bytes.\r
-  \r
+\r
   If Destination is NULL, then ASSERT().\r
   If Destination is not aligned on a 16-bit boundary, then ASSERT().\r
   If Source is NULL, then ASSERT().\r
   If Source and Destination overlap, then ASSERT().\r
-  If PcdMaximumAsciiStringLength is not zero, and Source contains more than \r
-  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator, \r
+  If PcdMaximumAsciiStringLength is not zero, and Source contains more than\r
+  PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,\r
   then ASSERT().\r
-  If PcdMaximumUnicodeStringLength is not zero, and Source contains more than \r
-  PcdMaximumUnicodeStringLength ASCII characters not including the \r
+  If PcdMaximumUnicodeStringLength is not zero, and Source contains more than\r
+  PcdMaximumUnicodeStringLength ASCII characters not including the\r
   Null-terminator, then ASSERT().\r
 \r
   @param  Source        Pointer to a Null-terminated ASCII string.\r
   @param  Destination   Pointer to a Null-terminated Unicode string.\r
 \r
-  @return Destination pointing to the converted Unicode string.\r
+  @return Destination.\r
 \r
 **/\r
 CHAR16 *\r
@@ -2042,7 +2037,7 @@ AsciiStrToUnicodeStr (
 \r
   @param  Value The 8-bit value to convert to BCD. Range 0..99.\r
 \r
-  @return The BCD value converted.\r
+  @return The BCD value.\r
 \r
 **/\r
 UINT8\r
@@ -2066,7 +2061,7 @@ DecimalToBcd8 (
 \r
   @param  Value The 8-bit BCD value to convert to an 8-bit value.\r
 \r
-  @return The 8-bit decimal value converted.\r
+  @return The 8-bit value is returned.\r
 \r
 **/\r
 UINT8\r
@@ -2092,8 +2087,8 @@ BcdToDecimal8 (
 \r
   @param Nibble     The nibble which is in the low 4 bits of the input byte.\r
 \r
-  @return   The Unicode hexadecimal character.\r
-  \r
+  @retval  CHAR16   The Unicode hexadecimal character.\r
+\r
 **/\r
 CHAR16\r
 EFIAPI\r
@@ -2121,20 +2116,21 @@ NibbleToHexChar (
   the last character in the output string. The one next to first byte will be put into the\r
   character before the last character. This rules applies to the rest of the bytes. The Unicode\r
   character by the last byte will be put into the first character in the output string. For example,\r
-  the input buffer for a 64-bits unsigned integrer 0x12345678abcdef1234 will be converted to\r
+  the input buffer for a 64-bits unsigned integer 0x12345678abcdef1234 will be converted to\r
   a Unicode string equal to L"12345678abcdef1234".\r
 \r
-  @param String                 Pointer to the buffer allocated for the convertion.\r
-  @param StringLen              On input: Pointer to length in bytes of buffer to hold the Unicode string.\r
-                                On output:If return EFI_SUCCESS, pointer to length of Unicode string converted.\r
-                                          If return EFI_BUFFER_TOO_SMALL, pointer to length of string buffer desired.\r
-  @param Buffer                 The pointer to a input buffer.\r
-  @param BufferSizeInBytes      Lenth in bytes of the input buffer.\r
-  \r
-  @retval EFI_SUCCESS           The convertion is successfull. All bytes in Buffer has been convert to the corresponding\r
-                                Unicode character and placed into the right place in String.\r
-  @retval EFI_BUFFER_TOO_SMALL  StringSizeInBytes is smaller than 2 * N + 1the number of bytes required to\r
-                                complete the convertion. \r
+  @param String                        On input, String is pointed to the buffer allocated for the convertion.\r
+  @param StringLen                     The Length of String buffer to hold the output String. The length must include the tailing '\0' character.\r
+                                       The StringLen required to convert a N bytes Buffer will be a least equal to or greater \r
+                                       than 2*N + 1.\r
+  @param Buffer                        The pointer to a input buffer.\r
+  @param BufferSizeInBytes             Length in bytes of the input buffer.\r
+\r
+\r
+  @retval  EFI_SUCCESS                 The convertion is successful. All bytes in Buffer has been convert to the corresponding\r
+                                       Unicode character and placed into the right place in String.\r
+  @retval  EFI_BUFFER_TOO_SMALL        StringSizeInBytes is smaller than 2 * N + 1the number of bytes required to\r
+                                       complete the convertion. \r
 **/\r
 RETURN_STATUS\r
 EFIAPI\r
@@ -2285,16 +2281,17 @@ HexStringToBuf (
   Unicode character is converted to a byte. For example, Unicode character\r
   L'A' will be converted to 0x0A. \r
 \r
-  If Digit is NULL, then ASSERT().\r
-  \r
+  If Digit is NULL, then ASSERT.\r
+\r
   @param  Digit       The output hexadecimal digit.\r
+\r
   @param  Char        The input Unicode character.\r
 \r
   @retval TRUE        Char is in the range of Hexadecimal number. Digit is updated\r
                       to the byte value of the number.\r
   @retval FALSE       Char is not in the range of Hexadecimal number. Digit is keep\r
                       intact.\r
-  \r
+\r
 **/\r
 BOOLEAN\r
 EFIAPI\r