Home
last modified time | relevance | path

Searched refs:hexDigit (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/lib/AST/
H A DItaniumMangle.cpp1164 uint64_t hexDigit = valueBits.getRawData()[digitBitIndex / 64]; in mangleFloat() local
1165 hexDigit >>= (digitBitIndex % 64); in mangleFloat()
1166 hexDigit &= 0xF; in mangleFloat()
1173 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp463 unsigned int hexDigit; in trailingHexadecimalFraction() local
479 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
483 if (hexDigit == -1U) in trailingHexadecimalFraction()