Home
last modified time | relevance | path

Searched refs:hexDigitValue (Results 1 – 9 of 9) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h69 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
80 inline bool isHexDigit(char C) { return hexDigitValue(C) != -1U; } in isHexDigit()
162 unsigned U1 = hexDigitValue(MSB); in hexFromNibbles()
163 unsigned U2 = hexDigitValue(LSB); in hexFromNibbles()
/freebsd-12.1/contrib/llvm/lib/AsmParser/
H A DLLLexer.cpp65 Result += hexDigitValue(*Buffer); in HexIntToVal()
82 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair()
88 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair()
102 Pair[1] += hexDigitValue(*Buffer); in FP80HexToIntPair()
107 Pair[0] += hexDigitValue(*Buffer); in FP80HexToIntPair()
128 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/
H A DLiteralSupport.cpp157 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); in ProcessCharEscape()
260 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
294 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); in ProcessUCNEscape()
992 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1014 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
1132 unsigned C = llvm::hexDigitValue(*Ptr); in GetFixedPointValue()
H A DLexer.cpp2981 unsigned Value = llvm::hexDigitValue(C); in tryReadUCN()
/freebsd-12.1/contrib/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp134 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/freebsd-12.1/contrib/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp164 uint8_t Value = (llvm::hexDigitValue(*Iter++) << 4); in input()
165 Value |= llvm::hexDigitValue(*Iter++); in input()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DCommentLexer.cpp86 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp406 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2297 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2749 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/freebsd-12.1/contrib/sqlite3/
H A Dshell.c737 static int hexDigitValue(char c){ in hexDigitValue() function
771 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
13136 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()