Home
last modified time | relevance | path

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

12

/external/llvm-project/llvm/lib/ObjectYAML/
DYAML.cpp48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary()
50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
DCodeViewYAMLTypes.cpp163 uint8_t Value = (llvm::hexDigitValue(*Iter++) << 4); in input()
164 Value |= llvm::hexDigitValue(*Iter++); in input()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DYAML.cpp48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary()
50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
DCodeViewYAMLTypes.cpp163 uint8_t Value = (llvm::hexDigitValue(*Iter++) << 4); in input()
164 Value |= llvm::hexDigitValue(*Iter++); in input()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
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()
/external/llvm-project/mlir/lib/Parser/
DToken.cpp121 result.push_back((llvm::hexDigitValue(c1) << 4) | llvm::hexDigitValue(c2)); in getStringValue()
/external/llvm-project/llvm/include/llvm/ADT/
DStringExtras.h68 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
91 inline bool isHexDigit(char C) { return hexDigitValue(C) != -1U; } in isHexDigit()
185 unsigned U1 = hexDigitValue(MSB); in tryGetHexFromNibbles()
186 unsigned U2 = hexDigitValue(LSB); in tryGetHexFromNibbles()
/external/llvm/lib/AsmParser/
DLLLexer.cpp68 Result += hexDigitValue(*Buffer); in HexIntToVal()
85 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair()
91 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair()
105 Pair[1] += hexDigitValue(*Buffer); in FP80HexToIntPair()
110 Pair[0] += hexDigitValue(*Buffer); in FP80HexToIntPair()
131 *BOut = hexDigitValue(BIn[1]) * 16 + hexDigitValue(BIn[2]); in UnEscapeLexed()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
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()
/external/llvm-project/llvm/lib/AsmParser/
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()
/external/llvm/tools/llvm-pdbdump/
DPdbYaml.cpp44 uint8_t Value = (llvm::hexDigitValue(*Iter) << 4); in input()
46 Value |= llvm::hexDigitValue(*Iter); in input()
/external/llvm-project/clang/lib/Lex/
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()
1011 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
1033 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
1155 unsigned C = llvm::hexDigitValue(*Ptr); in GetFixedPointValue()
/external/clang/lib/Lex/
DLiteralSupport.cpp144 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); in ProcessCharEscape()
247 unsigned Value = llvm::hexDigitValue(*I); in expandUCNs()
281 int CharVal = llvm::hexDigitValue(ThisTokBuf[0]); in ProcessUCNEscape()
925 N = N * radix + llvm::hexDigitValue(*Ptr); in GetIntegerValue()
947 unsigned C = llvm::hexDigitValue(*Ptr++); in GetIntegerValue()
DLexer.cpp2749 unsigned Value = llvm::hexDigitValue(C); in tryReadUCN()
/external/llvm/include/llvm/ADT/
DStringExtras.h40 static inline unsigned hexDigitValue(char C) { in hexDigitValue() function
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DStringExtras.h41 static inline unsigned hexDigitValue(char C) { in hexDigitValue() function
/external/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp128 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp133 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/external/llvm-project/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp144 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/external/llvm-project/clang/lib/AST/
DCommentLexer.cpp85 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
/external/llvm-project/llvm/lib/MC/MCParser/
DAsmLexer.cpp282 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
/external/clang/lib/AST/
DCommentLexer.cpp86 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
/external/llvm/lib/Support/
DAPFloat.cpp331 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2387 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2845 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp458 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2357 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2826 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/external/llvm-project/llvm/lib/Support/
DAPFloat.cpp472 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2540 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
3055 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()

12