Home
last modified time | relevance | path

Searched refs:FormatCharacter (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/MdePkg/Library/BasePrintLib/
DPrintLibInternal.c324 UINTN FormatCharacter; in BasePrintLibSPrintMarker() local
413 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibSPrintMarker()
418 while (FormatCharacter != 0) { in BasePrintLibSPrintMarker()
438 switch (FormatCharacter) { in BasePrintLibSPrintMarker()
445 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibSPrintMarker()
446 switch (FormatCharacter) { in BasePrintLibSPrintMarker()
495 for (Count = 0; ((FormatCharacter >= '0') && (FormatCharacter <= '9')); ){ in BasePrintLibSPrintMarker()
496 Count = (Count * 10) + FormatCharacter - '0'; in BasePrintLibSPrintMarker()
498 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibSPrintMarker()
528 switch (FormatCharacter) { in BasePrintLibSPrintMarker()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePrintLibPrint2Protocol/
DPrintLib.c90 UINTN FormatCharacter; in DxePrintLibPrint2ProtocolVaListToBaseList() local
112 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in DxePrintLibPrint2ProtocolVaListToBaseList()
114 while (FormatCharacter != 0) { in DxePrintLibPrint2ProtocolVaListToBaseList()
115 if (FormatCharacter == '%') { in DxePrintLibPrint2ProtocolVaListToBaseList()
130 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in DxePrintLibPrint2ProtocolVaListToBaseList()
132 switch (FormatCharacter) { in DxePrintLibPrint2ProtocolVaListToBaseList()
174 switch (FormatCharacter) { in DxePrintLibPrint2ProtocolVaListToBaseList()
221 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in DxePrintLibPrint2ProtocolVaListToBaseList()
1226 UINTN FormatCharacter; in InternalPrintLibSPrintMarker() local
1315 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask; in InternalPrintLibSPrintMarker()
[all …]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BasePrintLib/
DPrintLib.c102 UINTN FormatCharacter; in BasePrintLibVSPrint() local
167 FormatCharacter = (*Format | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibVSPrint()
172 while (FormatCharacter != 0 && Buffer < EndBuffer) { in BasePrintLibVSPrint()
189 switch (FormatCharacter) { in BasePrintLibVSPrint()
196 FormatCharacter = (*Format | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibVSPrint()
197 switch (FormatCharacter) { in BasePrintLibVSPrint()
238 for (Count = 0; ((FormatCharacter >= '0') && (FormatCharacter <= '9')); ){ in BasePrintLibVSPrint()
239 Count = (Count * 10) + FormatCharacter - '0'; in BasePrintLibVSPrint()
241 FormatCharacter = (*Format | (*(Format + 1) << 8)) & FormatMask; in BasePrintLibVSPrint()
271 switch (FormatCharacter) { in BasePrintLibVSPrint()
[all …]