Lines Matching full:ascii

576   Returns the length of a Null-terminated Ascii string.
580 @param String A pointer to a Null-terminated Ascii string.
581 @param MaxSize The maximum number of Destination Ascii
597 Returns the size of a Null-terminated Ascii string in bytes, including the
600 This function returns the size of the Null-terminated Ascii string specified
603 @param String A pointer to a Null-terminated Ascii string.
604 @param MaxSize The maximum number of Destination Ascii
611 @return The size of the Null-terminated Ascii string in bytes, including the
630 @param Destination A pointer to a Null-terminated Ascii string.
631 @param DestMax The maximum number of Destination Ascii
633 @param Source A pointer to a Null-terminated Ascii string.
662 @param Destination A pointer to a Null-terminated Ascii string.
663 @param DestMax The maximum number of Destination Ascii
665 @param Source A pointer to a Null-terminated Ascii string.
666 @param Length The maximum number of Ascii characters to copy.
696 @param Destination A pointer to a Null-terminated Ascii string.
697 @param DestMax The maximum number of Destination Ascii
699 @param Source A pointer to a Null-terminated Ascii string.
732 @param Destination A pointer to a Null-terminated Ascii string.
733 @param DestMax The maximum number of Destination Ascii
735 @param Source A pointer to a Null-terminated Ascii string.
736 @param Length The maximum number of Ascii characters to copy.
761 Convert a Null-terminated Ascii decimal string to a value of type UINTN.
764 the Ascii string specified by String as a decimal number. The format of the
765 input Ascii string String is:
785 @param String Pointer to a Null-terminated Ascii string.
794 PcdMaximumAsciiStringLength Ascii
810 Convert a Null-terminated Ascii decimal string to a value of type UINT64.
813 the Ascii string specified by String as a decimal number. The format of the
814 input Ascii string String is:
834 @param String Pointer to a Null-terminated Ascii string.
843 PcdMaximumAsciiStringLength Ascii
859 Convert a Null-terminated Ascii hexadecimal string to a value of type UINTN.
862 the Ascii string specified by String as a hexadecimal number. The format of
863 the input Ascii string String is:
887 @param String Pointer to a Null-terminated Ascii string.
896 PcdMaximumAsciiStringLength Ascii
912 Convert a Null-terminated Ascii hexadecimal string to a value of type UINT64.
915 the Ascii string specified by String as a hexadecimal number. The format of
916 the input Ascii string String is:
940 @param String Pointer to a Null-terminated Ascii string.
949 PcdMaximumAsciiStringLength Ascii
1664 ASCII string and returns the ASCII string.
1667 to the ASCII string Destination by copying the lower 8 bits of
1690 @param Destination The pointer to a Null-terminated ASCII string.
1706 ASCII string.
1711 to the ASCII string Destination by copying the lower 8 bits of
1712 each Unicode character. The function terminates the ASCII string
1726 @param Destination The pointer to a Null-terminated ASCII string.
1727 @param DestMax The maximum number of Destination Ascii
1754 Unicode string to a Null-terminated Ascii string. If no null char is copied
1758 Unicode string Source to the Ascii string Destination by copying the lower 8
1759 bits of each Unicode character. The function terminates the Ascii string
1774 @param Destination The pointer to a Null-terminated Ascii string.
1775 @param DestMax The maximum number of Destination Ascii
1810 Copies one Null-terminated ASCII string to another Null-terminated ASCII
1811 string and returns the new ASCII string.
1813 This function copies the contents of the ASCII string Source to the ASCII
1821 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
1824 @param Destination The pointer to a Null-terminated ASCII string.
1825 @param Source The pointer to a Null-terminated ASCII string.
1841 Copies up to a specified length one Null-terminated ASCII string to another
1842 Null-terminated ASCII string and returns the new ASCII string.
1844 This function copies the contents of the ASCII string Source to the ASCII
1845 string Destination, and returns Destination. At most, Length ASCII characters
1847 returned unmodified. If Length is greater that the number of ASCII characters
1848 in Source, then Destination is padded with Null ASCII characters. If Source
1857 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
1860 @param Destination The pointer to a Null-terminated ASCII string.
1861 @param Source The pointer to a Null-terminated ASCII string.
1862 @param Length The maximum number of ASCII characters to copy.
1877 Returns the length of a Null-terminated ASCII string.
1879 This function returns the number of ASCII characters in the Null-terminated
1880 ASCII string specified by String.
1885 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
1888 @param String The pointer to a Null-terminated ASCII string.
1901 Returns the size of a Null-terminated ASCII string in bytes, including the
1904 This function returns the size, in bytes, of the Null-terminated ASCII string
1909 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
1912 @param String The pointer to a Null-terminated ASCII string.
1925 Compares two Null-terminated ASCII strings, and returns the difference
1926 between the first mismatched ASCII characters.
1928 This function compares the Null-terminated ASCII string FirstString to the
1929 Null-terminated ASCII string SecondString. If FirstString is identical to
1931 mismatched ASCII character in SecondString subtracted from the first
1932 mismatched ASCII character in FirstString.
1937 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
1940 than PcdMaximumAsciiStringLength ASCII characters not including the
1943 @param FirstString The pointer to a Null-terminated ASCII string.
1944 @param SecondString The pointer to a Null-terminated ASCII string.
1959 Performs a case insensitive comparison of two Null-terminated ASCII strings,
1960 and returns the difference between the first mismatched ASCII characters.
1963 ASCII string FirstString to the Null-terminated ASCII string SecondString. If
1965 value returned is the first mismatched lower case ASCII character in
1966 SecondString subtracted from the first mismatched lower case ASCII character
1972 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
1975 than PcdMaximumAsciiStringLength ASCII characters not including the
1978 @param FirstString The pointer to a Null-terminated ASCII string.
1979 @param SecondString The pointer to a Null-terminated ASCII string.
1996 Compares two Null-terminated ASCII strings with maximum lengths, and returns
1997 the difference between the first mismatched ASCII characters.
1999 This function compares the Null-terminated ASCII string FirstString to the
2000 Null-terminated ASCII string SecondString. At most, Length ASCII characters
2003 is the first mismatched ASCII character in SecondString subtracted from the
2004 first mismatched ASCII character in FirstString.
2011 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
2014 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
2017 @param FirstString The pointer to a Null-terminated ASCII string.
2018 @param SecondString The pointer to a Null-terminated ASCII string.
2019 @param Length The maximum number of ASCII characters for compare.
2039 Concatenates one Null-terminated ASCII string to another Null-terminated
2040 ASCII string, and returns the concatenated ASCII string.
2042 This function concatenates two Null-terminated ASCII strings. The contents of
2043 Null-terminated ASCII string Source are concatenated to the end of Null-
2044 terminated ASCII string Destination. The Null-terminated concatenated ASCII
2050 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
2053 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
2056 Source results in a ASCII string with more than PcdMaximumAsciiStringLength
2057 ASCII characters, then ASSERT().
2059 @param Destination The pointer to a Null-terminated ASCII string.
2060 @param Source The pointer to a Null-terminated ASCII string.
2076 Concatenates up to a specified length one Null-terminated ASCII string to
2077 the end of another Null-terminated ASCII string, and returns the
2078 concatenated ASCII string.
2080 This function concatenates two Null-terminated ASCII strings. The contents
2081 of Null-terminated ASCII string Source are concatenated to the end of Null-
2082 terminated ASCII string Destination, and Destination is returned. At most,
2083 Length ASCII characters are concatenated from Source to the end of
2094 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
2097 PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
2100 Source results in a ASCII string with more than PcdMaximumAsciiStringLength
2101 ASCII characters, not including the Null-terminator, then ASSERT().
2103 @param Destination The pointer to a Null-terminated ASCII string.
2104 @param Source The pointer to a Null-terminated ASCII string.
2105 @param Length The maximum number of ASCII characters to concatenate from
2121 Returns the first occurrence of a Null-terminated ASCII sub-string
2122 in a Null-terminated ASCII string.
2124 This function scans the contents of the ASCII string specified by String
2136 @param String The pointer to a Null-terminated ASCII string.
2137 @param SearchString The pointer to a Null-terminated ASCII string to search for.
2153 Convert a Null-terminated ASCII decimal string to a value of type
2157 of the ASCII string String as a decimal number. The format of the input
2158 ASCII string String is:
2174 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
2177 @param String The pointer to a Null-terminated ASCII string.
2190 Convert a Null-terminated ASCII decimal string to a value of type
2194 of the ASCII string String as a decimal number. The format of the input
2195 ASCII string String is:
2211 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
2214 @param String The pointer to a Null-terminated ASCII string.
2227 Convert a Null-terminated ASCII hexadecimal string to a value of type UINTN.
2230 the ASCII string String as a hexadecimal number. The format of the input ASCII
2252 and String contains more than PcdMaximumAsciiStringLength ASCII characters not including
2255 @param String The pointer to a Null-terminated ASCII string.
2268 Convert a Null-terminated ASCII hexadecimal string to a value of type UINT64.
2271 the ASCII string String as a hexadecimal number. The format of the input ASCII
2293 and String contains more than PcdMaximumAsciiStringLength ASCII characters not including
2296 @param String The pointer to a Null-terminated ASCII string.
2308 Convert a Null-terminated ASCII string to IPv6 address and prefix length.
2311 of type UINT8 by interpreting the contents of the ASCII string specified
2312 by String. The format of the input ASCII string String is as follows:
2335 @param String Pointer to a Null-terminated ASCII string.
2365 Convert a Null-terminated ASCII string to IPv4 address and prefix length.
2368 of type UINT8 by interpreting the contents of the ASCII string specified
2369 by String. The format of the input ASCII string String is as follows:
2386 @param String Pointer to a Null-terminated ASCII string.
2413 Convert a Null-terminated ASCII GUID string to a value of type
2417 the ASCII string specified by String. The format of the input
2418 ASCII string String consists of 36 characters, as follows:
2443 @param String Pointer to a Null-terminated ASCII string.
2460 Convert a Null-terminated ASCII hexadecimal string to a byte array.
2463 the ASCII string specified by String in hexadecimal format. The format of
2464 the input ASCII string String is:
2473 @param String Pointer to a Null-terminated ASCII string.
2474 @param Length The number of ASCII characters to decode.
2504 Convert one Null-terminated ASCII string to a Null-terminated
2507 This function converts the contents of the ASCII string Source to the Unicode
2518 PcdMaximumAsciiStringLength ASCII characters not including the Null-terminator,
2521 PcdMaximumUnicodeStringLength ASCII characters not including the
2524 @param Source The pointer to a Null-terminated ASCII string.
2540 Convert one Null-terminated ASCII string to a Null-terminated
2545 This function converts the contents of the ASCII string Source to the Unicode
2556 @param Source The pointer to a Null-terminated ASCII string.
2585 Ascii string to a Null-terminated Unicode string. If no null char is copied
2589 Ascii string Source to the Unicode string Destination. The function
2602 @param Source The pointer to a Null-terminated Ascii string.
2603 @param Length The maximum number of Ascii characters to convert.
2607 @param DestinationLength The number of Ascii characters converted.
2637 it maps to a valid small-case ASCII character.
2640 which maps to a valid small-case ASCII character, i.e.
2657 Converts a lowercase Ascii character to upper one.
2659 If Chr is lowercase Ascii character, then converts it to upper one.
2664 @param Chr one Ascii character
2666 @return The uppercase value of Ascii character
2676 Convert binary data to a Base64 encoded ascii string based on RFC4648.
2678 …Produce a Null-terminated Ascii string in the output buffer specified by Destination and Destinati…
2679 The Ascii string is produced by converting the data string specified by Source and SourceLength.
2684 @param DestinationSize Size of ascii buffer. Set to 0 to get the size needed.
2687 @retval RETURN_SUCCESS When ascii buffer is filled in.
2704 Decode Base64 ASCII encoded data to 8-bit binary representation, based on
2717 The minimum amount of required padding (with ASCII 0x3D, '=') is tolerated
2718 and enforced at the end of the Base64 ASCII encoded data, and only there.
2721 reject the Base64 ASCII encoded data.
2724 ASCII encoding. May be NULL if SourceSize is
2743 required for decoding the Base64 ASCII