Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DItaniumMangle.cpp1220 uint64_t hexDigit = valueBits.getRawData()[digitBitIndex / 64]; in mangleFloat() local
1221 hexDigit >>= (digitBitIndex % 64); in mangleFloat()
1222 hexDigit &= 0xF; in mangleFloat()
1229 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp617 unsigned int hexDigit; in trailingHexadecimalFraction() local
633 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
637 if (hexDigit == UINT_MAX) in trailingHexadecimalFraction()