Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp3468 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3472 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
3499 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3501 if (N <= FormatPrecision) return; in AdjustToPrecision()
3504 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
3545 unsigned FormatPrecision, in toString() argument
3581 if (!FormatPrecision) { in toString()
3589 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString()
3632 AdjustToPrecision(significand, exp, FormatPrecision); in toString()
3661 AdjustToPrecision(buffer, exp, FormatPrecision); in toString()
[all …]
/minix3/external/bsd/llvm/dist/llvm/include/llvm/ADT/
H A DAPFloat.h487 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,