Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary()
50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h69 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
92 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit()
186 unsigned U1 = hexDigitValue(MSB); in tryGetHexFromNibbles()
187 unsigned U2 = hexDigitValue(LSB); in tryGetHexFromNibbles()
/freebsd-13.1/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp64 Result += hexDigitValue(*Buffer); in HexIntToVal()
81 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair()
87 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair()
101 Pair[1] += hexDigitValue(*Buffer); in FP80HexToIntPair()
106 Pair[0] += hexDigitValue(*Buffer); in FP80HexToIntPair()
127 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
/freebsd-13.1/contrib/llvm-project/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()
1031 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1053 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
1175 unsigned C = llvm::hexDigitValue(*Ptr); in GetFixedPointValue()
H A DLexer.cpp3052 unsigned Value = llvm::hexDigitValue(C); in tryReadUCN()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp144 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp85 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
/freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp290 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
H A DAsmParser.cpp3032 Value = Value * 16 + hexDigitValue(Str[++i]); in parseEscapedString()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp479 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2547 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
3062 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp292 if (hexDigitValue(Line[Pos]) == -1U) in checkChars()
/freebsd-13.1/contrib/sqlite3/
H A Dshell.c782 static int hexDigitValue(char c){ in hexDigitValue() function
816 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
15991 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()