Searched refs:FormatPrecision (Results 1 – 2 of 2) sorted by relevance
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | APFloat.cpp | 3353 if (N <= FormatPrecision) return; in AdjustToPrecision() 3356 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 3416 if (FormatPrecision > 1) in toString() 3417 Str.append(FormatPrecision - 1, '0'); in toString() 3439 if (!FormatPrecision) { in toString() 3447 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString() 3490 AdjustToPrecision(significand, exp, FormatPrecision); in toString() 3519 AdjustToPrecision(buffer, exp, FormatPrecision); in toString() 3560 if (!TruncateZero && FormatPrecision > NDigits - 1) in toString() 3561 Str.append(FormatPrecision - NDigits + 1, '0'); in toString() [all …]
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 414 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 657 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, 1167 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1170 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));
|