Searched refs:FormatPrecision (Results 1 – 2 of 2) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 4002 if (N <= FormatPrecision) return; in AdjustToPrecision() 4005 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 4065 if (FormatPrecision > 1) in toString() 4066 Str.append(FormatPrecision - 1, '0'); in toString() 4088 if (!FormatPrecision) { in toString() 4096 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString() 4139 AdjustToPrecision(significand, exp, FormatPrecision); in toString() 4173 AdjustToPrecision(buffer, exp, FormatPrecision); in toString() 4214 if (!TruncateZero && FormatPrecision > NDigits - 1) in toString() 4215 Str.append(FormatPrecision - NDigits + 1, '0'); in toString() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 485 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 757 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, 1325 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1328 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));
|