Searched refs:FormatPrecision (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/ |
| HD | APFloat.cpp | 3397 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3401 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() 3428 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3430 if (N <= FormatPrecision) return; in AdjustToPrecision() 3433 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 3473 void IEEEFloat::toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, in toString() argument 3493 if (FormatPrecision > 1) in toString() 3494 Str.append(FormatPrecision - 1, '0'); in toString() 3516 if (!FormatPrecision) { in toString() 3524 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| HD | APFloat.h | 430 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 674 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, 1187 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1190 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));
|