Home
last modified time | relevance | path

Searched refs:hexDigitValue (Results 1 – 14 of 14) 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.h81 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
109 inline bool isHexDigit(char C) { return hexDigitValue(C) != ~0U; } in isHexDigit()
/freebsd/contrib/llvm-project/llvm/tools/llvm-mc/
H A DDisassembler.cpp123 unsigned C0 = hexDigitValue(Value[0]); in byteArrayFromString()
124 unsigned C1 = hexDigitValue(Value[1]); in byteArrayFromString()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLLexer.cpp76 Result += hexDigitValue(*Buffer); in HexIntToVal()
93 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair()
99 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair()
113 Pair[1] += hexDigitValue(*Buffer); in FP80HexToIntPair()
118 Pair[0] += hexDigitValue(*Buffer); in FP80HexToIntPair()
139 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DLiteralSupport.cpp214 int CharVal = llvm::hexDigitValue(*ThisTokBuf); in ProcessCharEscape()
397 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
431 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
492 int CharVal = llvm::hexDigitValue(*ThisTokBuf); in ProcessNumericUCNEscape()
1518 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1540 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
1665 unsigned C = llvm::hexDigitValue(*Ptr); in GetFixedPointValue()
H A DLexer.cpp3455 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.cpp371 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
H A DAsmParser.cpp3006 Value = Value * 16 + hexDigitValue(Str[++i]); in parseEscapedString()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp661 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2985 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
3505 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/freebsd/contrib/llvm-project/lld/ELF/
H A DDriver.cpp886 } else if (i + 2 < e && (c1 = hexDigitValue(s[i + 1])) != -1u && in parsePackageMetadata()
887 (c0 = hexDigitValue(s[i + 2])) != -1u) { in parsePackageMetadata()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp308 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()