Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
H A DCodeViewYAMLTypes.cpp163 uint8_t Value = (llvm::hexDigitValue(*Iter++) << 4); in input()
164 Value |= llvm::hexDigitValue(*Iter++); in input()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringExtras.h68 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
79 inline bool isHexDigit(char C) { return hexDigitValue(C) != -1U; } in isHexDigit()
161 unsigned U1 = hexDigitValue(MSB); in hexFromNibbles()
162 unsigned U2 = hexDigitValue(LSB); in hexFromNibbles()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/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()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DStringExtras.h41 static inline unsigned hexDigitValue(char C) { in hexDigitValue() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
H A DMILexer.cpp133 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DAPFloat.cpp458 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2357 hex_value = hexDigitValue(*p);
2826 *q = hexDigitChars[hexDigitValue (*q) + 1];
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2924 Value = Value * 16 + hexDigitValue(Str[++i]); in parseEscapedString()
/third_party/sqlite/src/
H A Dshell.c769 static int hexDigitValue(char c){ in hexDigitValue() function
803 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
19747 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()

Completed in 52 milliseconds