Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DStringExtras.h69 inline unsigned hexDigitValue(char C) { in hexDigitValue() function
80 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/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-7.0/llvm/lib/AsmParser/
DLLLexer.cpp65 Result += hexDigitValue(*Buffer); in HexIntToVal()
82 Pair[0] += hexDigitValue(*Buffer); in HexToIntPair()
88 Pair[1] += hexDigitValue(*Buffer); in HexToIntPair()
102 Pair[1] += hexDigitValue(*Buffer); in FP80HexToIntPair()
107 Pair[0] += hexDigitValue(*Buffer); in FP80HexToIntPair()
128 *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/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-7.0/llvm/lib/CodeGen/MIRParser/
DMILexer.cpp134 Str += hexDigitValue(C.peek(1)) * 16 + hexDigitValue(C.peek(2)); in unescapeQuotedString()
/external/swiftshader/third_party/LLVM/lib/Support/
DAPFloat.cpp99 hexDigitValue(unsigned int c) in hexDigitValue() function
339 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2243 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2260 while (p != end && hexDigitValue(*p) != -1U) in convertFromHexadecimalString()
2674 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ObjectYAML/
DCodeViewYAMLTypes.cpp164 uint8_t Value = (llvm::hexDigitValue(*Iter++) << 4); in input()
165 Value |= llvm::hexDigitValue(*Iter++); in input()
/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-7.0/llvm/lib/Support/
DAPFloat.cpp406 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
2297 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2749 *q = hexDigitChars[hexDigitValue (*q) + 1]; in convertNormalToHexString()
/external/sqlite/dist/orig/
Dshell.c656 static int hexDigitValue(char c){ in hexDigitValue() function
690 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
10532 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()
/external/sqlite/dist/
Dshell.c662 static int hexDigitValue(char c){ in hexDigitValue() function
696 while( (x = hexDigitValue(zArg[0]))>=0 ){ in integerValue()
10555 for(i=2; hexDigitValue(zArg[i])>=0; i++){} in booleanValue()