/netbsd-src/external/bsd/elftosb/dist/common/ |
H A D | StSRecordFile.cpp | 87 bool StSRecordFile::isHexDigit(char c) in isHexDigit() function in StSRecordFile 113 if (!(isHexDigit(nibbleCharHi) && isHexDigit(nibbleCharLo))) in readHexByte()
|
H A D | HexValues.h | 13 bool isHexDigit(char c);
|
H A D | HexValues.cpp | 10 bool isHexDigit(char c) in isHexDigit() function
|
H A D | AESKey.cpp | 43 if (isHexDigit(c)) in _readFromStream()
|
H A D | StSRecordFile.h | 103 bool isHexDigit(char c);
|
/netbsd-src/external/bsd/elftosb/dist/elftosb2/ |
H A D | ElftosbLexer.cpp | 76 if (isHexDigit(hi) && isHexDigit(lo)) in processStringEscapes()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/ |
H A D | Encoding.h | 89 inline bool isHexDigit(char c) { in isHexDigit() function 109 while (I < Text.size() && isHexDigit(Text[I])) in getEscapeSequenceLength()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/ |
H A D | uri.d | 201 import std.ascii : isHexDigit; 244 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2])) 278 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
|
H A D | uuid.d | 1317 import std.ascii : isHexDigit; 1364 while (!uuidRange.empty && !isHexDigit(uuidRange.front)) 1392 else if (!isHexDigit(character))
|
H A D | conv.d | 2647 import std.ascii : isDigit, isAlpha, toLower, toUpper, isHexDigit; 2767 alias checkDigit = isHexDigit; in parseDigits() 3682 import std.ascii : isAlpha, isHexDigit; in getHexDigit() 3689 if (!isHexDigit(c)) in getHexDigit() 5679 import std.ascii : isHexDigit; 5700 if (c.isHexDigit) 5823 import std.ascii : isHexDigit; 5831 if (c.isHexDigit)
|
H A D | json.d | 706 import std.ascii : isWhite, isDigit, isHexDigit, toUpper, toLower; 814 if (!isHexDigit(hex)) error("Expecting hex character"); in parseWChar()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | uri.d | 197 import std.ascii : isHexDigit; 227 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2])) 261 if (!isHexDigit(s[k + 1]) || !isHexDigit(s[k + 2]))
|
H A D | uuid.d | 1337 import std.ascii : isHexDigit; 1384 while (!uuidRange.empty && !isHexDigit(uuidRange.front)) 1412 else if (!isHexDigit(character))
|
H A D | conv.d | 3112 import std.ascii : isDigit, isAlpha, toLower, toUpper, isHexDigit; 3270 alias checkDigit = isHexDigit; 4467 import std.ascii : isAlpha, isHexDigit; 4474 if (!isHexDigit(c)) 5463 import std.ascii : isHexDigit; 5484 if (c.isHexDigit) 5631 import std.ascii : isHexDigit; 5645 if (c.isHexDigit)
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/ |
H A D | AsmLexer.cpp | 116 while (isHexDigit(*CurPtr)) in LexHexFloatLiteral() 276 if (LexHex && isHexDigit(*LookAhead)) in doHexLookAhead() 335 while (isHexDigit(*CurPtr)) { in LexDigit() 435 while (isHexDigit(CurPtr[0])) in LexDigit() 521 while (isHexDigit(CurPtr[0])) in LexDigit() 826 if (LexMotorolaIntegers && isHexDigit(*CurPtr)) in LexToken()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/ |
H A D | YAML.cpp | 34 if (!llvm::isHexDigit(Scalar[I])) in input()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
H A D | RustDemangle.cpp | 83 static inline bool isHexDigit(const char C) { in isHexDigit() function 762 if (!isHexDigit(look())) in parseHexNumber()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
H A D | LiteralSupport.cpp | 146 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessCharEscape() 285 if (ThisTokBuf == ThisTokEnd || !isHexDigit(*ThisTokBuf)) { in ProcessUCNEscape() 788 if (isHexDigit(*s) && *s != 'e' && *s != 'E' && in ParseDecimalOrOctalCommon() 887 if ((c1 == 'x' || c1 == 'X') && (isHexDigit(s[1]) || s[1] == '.')) { in ParseNumberStartingWithZero() 967 } else if (isHexDigit(*s) && in ParseNumberStartingWithZero()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | CharInfo.h | 123 LLVM_READONLY inline bool isHexDigit(unsigned char c) { in isHexDigit() function
|
/netbsd-src/external/gpl2/groff/dist/src/preproc/html/ |
H A D | pushback.cpp | 231 static int isHexDigit (char ch)
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
H A D | LiteralSupport.h | 145 while (ptr != ThisTokEnd && (isHexDigit(*ptr) || isDigitSeparator(*ptr))) in SkipHexDigits()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/ |
H A D | Parser.cpp | 223 while (Length < Code.size() && isHexDigit(Code[Length])) in consumeNumberLiteral() 229 if (c == '-' || c == '+' || c == '.' || isHexDigit(c)) { in consumeNumberLiteral()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 91 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit() function
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
H A D | demangle.d | 142 static bool isHexDigit( char val ) in isHexDigit() function 523 if ( !isHexDigit( front ) ) 529 while ( isHexDigit( front ) )
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | CommentLexer.cpp | 36 return isHexDigit(C); in isHTMLHexCharacterReferenceCharacter()
|