Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DItaniumMangle.cpp1161 uint64_t hexDigit = valueBits.getRawData()[digitBitIndex / 64]; in mangleFloat() local
1162 hexDigit >>= (digitBitIndex % 64); in mangleFloat()
1163 hexDigit &= 0xF; in mangleFloat()
1170 buffer[stringIndex] = charForHex[hexDigit]; in mangleFloat()
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp492 unsigned int hexDigit; in trailingHexadecimalFraction() local
508 hexDigit = hexDigitValue(*p); in trailingHexadecimalFraction()
512 if (hexDigit == -1U) in trailingHexadecimalFraction()