Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/llvm/lib/Support/
DAPFloat.cpp2730 int expAdjustment; in convertFromHexadecimalString() local
2738 expAdjustment = static_cast<int>(dot - firstSignificantDigit); in convertFromHexadecimalString()
2739 if (expAdjustment < 0) in convertFromHexadecimalString()
2740 expAdjustment++; in convertFromHexadecimalString()
2741 expAdjustment = expAdjustment * 4 - 1; in convertFromHexadecimalString()
2745 expAdjustment += semantics->precision; in convertFromHexadecimalString()
2746 expAdjustment -= partsCount * integerPartWidth; in convertFromHexadecimalString()
2749 auto ExpOrErr = totalExponent(p + 1, end, expAdjustment); in convertFromHexadecimalString()