Home | History | Annotate | Download | only in BasePrintLib

Lines Matching defs:Character

66   Internal function that places the character into the Buffer.

68 Internal function that places ASCII or Unicode character into the Buffer.
73 @param Length The count of character to be placed into Buffer.
75 @param Character The character to be placed into Buffer.
76 @param Increment The character increment in Buffer.
86 IN UINTN Character,
93 *Buffer = (CHAR8) Character;
95 *(Buffer + 1) = (CHAR8)(Character >> 8);
155 If Value is < 0, then the fist character in Buffer is a '-'.
158 sign character, '0' characters, digit characters for Value, and the Null-terminator
172 @param Increment The character increment in Buffer.
290 @param[out] Buffer The character buffer to print the results of the
329 UINTN Character;
411 // Get the first character from the format string
684 Character = VA_ARG (VaListMarker, UINTN) & 0xffff;
686 Character = BASE_ARG (BaseListMarker, UINTN) & 0xffff;
688 ArgumentString = (CHAR8 *)&Character;
914 // Output the Prefix character if it is present
959 // Get the next character from the format string
964 // Get the next character from the format string
1000 @param StartOfBuffer The character buffer to print the results of the parsing