Searched refs:TempChar (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DMm.c144 CHAR16 TempChar; local
152 TempChar = *(str++);
153 while (TempChar != CHAR_NULL) {
154 if (TempChar >= 'a' && TempChar <= 'f') {
155 TempChar -= 'a' - 'A';
158 if (TempChar == ' ') {
162 if ((TempChar >= '0' && TempChar <= '9') || (TempChar >
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DSimpleFileParsing.c372 CHAR8 TempChar; local
388 TempChar = mGlobals.SourceFile.FileBufferPtr[0];
389 if (((TempChar >= 'a') && (TempChar <= 'z')) || ((TempChar >= 'A') && (TempChar <= 'Z')) || (TempChar == '_')) {
390 Str[0] = TempChar;
394 TempChar = mGlobals.SourceFile.FileBufferPtr[0];
395 if (((TempChar >
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DParserValidate.py34 # @param TempChar: The char to test
36 def __HexDigit(TempChar):
37 if (TempChar >= 'a' and TempChar <= 'f') or \
38 (TempChar >= 'A' and TempChar <= 'F') \
39 or (TempChar >= '0' and TempChar <= '9'):
48 # @param TempChar: The char to test
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDriver1CommandsLib/
H A DDrvDiag.c74 CHAR8 *TempChar; local
190 TempChar = AsciiStrStr(Language, ";");
191 if (TempChar != NULL){
192 *TempChar = CHAR_NULL;
229 TempChar = AsciiStrStr(Language, ";");
230 if (TempChar != NULL){
231 *TempChar = CHAR_NULL;
H A DDh.c63 CHAR8 *TempChar; local
96 TempChar = AsciiStrStr(Lang, ";");
97 if (TempChar != NULL){
98 *TempChar = CHAR_NULL;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DFdfParserLite.py836 TempChar = self.__CurrentChar()
838 if (TempChar >= 'a' and TempChar <= 'z') or (TempChar >= 'A' and TempChar <= 'Z') or TempChar == '_':
841 TempChar = self.__CurrentChar()
842 if (TempChar >= 'a' and TempChar <= 'z') or (TempChar >
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFdfParser.py955 TempChar = self.__CurrentChar()
957 if (TempChar >= 'a' and TempChar <= 'z') or (TempChar >= 'A' and TempChar <= 'Z') or TempChar == '_':
960 TempChar = self.__CurrentChar()
961 if (TempChar >= 'a' and TempChar <= 'z') or (TempChar >
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/
H A DConsoleLogger.c677 CHAR16 TempChar; local
700 TempChar = *(Walker + 1);
711 *((CHAR16*)(Walker+1)) = TempChar;
747 TempChar = *(Walker + 1);
758 *((CHAR16*)(Walker+1)) = TempChar;
H A DShellProtocol.c658 CHAR8 *TempChar; local
722 TempChar = AsciiStrStr(Lang, ";");
723 if (TempChar != NULL){
724 *TempChar = CHAR_NULL;
781 TempChar = AsciiStrStr(Lang, ";");
782 if (TempChar != NULL){
783 *TempChar = CHAR_NULL;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLib/
H A DUefiShellLib.c1601 CHAR16 *TempChar; local
1656 TempChar = StrStr(TestPath, L";");
1657 if (TempChar != NULL) {
1658 *TempChar = CHAR_NULL;
1717 CHAR16 *TempChar; local
1739 TempChar = StrStr(TestPath, L";");
1740 if (TempChar != NULL) {
1741 *TempChar = CHAR_NULL;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DConfigRouting.c531 CHAR16 TempChar; local
611 TempChar = *StringPtrEnd;
623 *StringPtrEnd = TempChar;

Completed in 102 milliseconds