Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DYAML.cpp47 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary()
49 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h80 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
108 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit()
210 unsigned U1 = hexDigitValue(MSB); in tryGetHexFromNibbles()
211 unsigned U2 = hexDigitValue(LSB); in tryGetHexFromNibbles()
/freebsd/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/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp212 int CharVal = llvm::hexDigitValue(*ThisTokBuf); in ProcessCharEscape()
396 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
430 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
491 int CharVal = llvm::hexDigitValue(*ThisTokBuf); in ProcessNumericUCNEscape()
1478 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1500 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
1625 unsigned C = llvm::hexDigitValue(*Ptr); in GetFixedPointValue()
H A DLexer.cpp3427 unsigned Value = llvm::hexDigitValue(C); in tryReadNumericUCN()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp142 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DCommentLexer.cpp85 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp291 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
H A DAsmParser.cpp3061 Value = Value * 16 + hexDigitValue(Str[++i]); in parseEscapedString()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp633 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2883 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
3400 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp311 if (hexDigitValue(Line[Pos]) == -1U) in checkChars()
/freebsd/contrib/sqlite3/
H A Dshell.c1404 static int hexDigitValue(char c){ in hexDigitValue() function
1438 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
26297 while( nhd<2 && (c=z[i+1+nhd])!=0 && (hdv=hexDigitValue(c))>=0 ){ in resolve_backslashes()
26327 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()