/external/llvm-project/llvm/lib/ObjectYAML/ |
D | YAML.cpp | 48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary() 50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
|
D | CodeViewYAMLTypes.cpp | 163 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/ |
D | YAML.cpp | 48 uint8_t Byte = llvm::hexDigitValue(Data[I * 2]); in writeAsBinary() 50 Byte |= llvm::hexDigitValue(Data[I * 2 + 1]); in writeAsBinary()
|
D | CodeViewYAMLTypes.cpp | 163 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/ |
D | StringExtras.h | 68 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/ |
D | Token.cpp | 121 result.push_back((llvm::hexDigitValue(c1) << 4) | llvm::hexDigitValue(c2)); in getStringValue()
|
/external/llvm-project/llvm/include/llvm/ADT/ |
D | StringExtras.h | 68 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/ |
D | LLLexer.cpp | 68 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/ |
D | LLLexer.cpp | 64 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/ |
D | LLLexer.cpp | 64 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/ |
D | PdbYaml.cpp | 44 uint8_t Value = (llvm::hexDigitValue(*Iter) << 4); in input() 46 Value |= llvm::hexDigitValue(*Iter); in input()
|
/external/llvm-project/clang/lib/Lex/ |
D | LiteralSupport.cpp | 157 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/ |
D | LiteralSupport.cpp | 144 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()
|
D | Lexer.cpp | 2749 unsigned Value = llvm::hexDigitValue(C); in tryReadUCN()
|
/external/llvm/include/llvm/ADT/ |
D | StringExtras.h | 40 static inline unsigned hexDigitValue(char C) { in hexDigitValue() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringExtras.h | 41 static inline unsigned hexDigitValue(char C) { in hexDigitValue() function
|
/external/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 128 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 133 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
|
/external/llvm-project/llvm/lib/CodeGen/MIRParser/ |
D | MILexer.cpp | 144 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
|
/external/llvm-project/clang/lib/AST/ |
D | CommentLexer.cpp | 85 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
|
/external/llvm-project/llvm/lib/MC/MCParser/ |
D | AsmLexer.cpp | 282 while (hexDigitValue(*CurPtr) < DefaultRadix) { in findLastDigit()
|
/external/clang/lib/AST/ |
D | CommentLexer.cpp | 86 CodePoint += llvm::hexDigitValue(C); in resolveHTMLHexCharacterReference()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 331 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/ |
D | APFloat.cpp | 458 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/ |
D | APFloat.cpp | 472 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction() 2540 hex_value = hexDigitValue(*p); in convertFromHexadecimalString() 3055 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
|