Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp3717 if (N <= FormatPrecision) return; in AdjustToPrecision()
3720 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
3780 if (FormatPrecision > 1) in toString()
3781 Str.append(FormatPrecision - 1, '0'); in toString()
3803 if (!FormatPrecision) { in toString()
3811 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString()
3854 AdjustToPrecision(significand, exp, FormatPrecision); in toString()
3883 AdjustToPrecision(buffer, exp, FormatPrecision); in toString()
3924 if (!TruncateZero && FormatPrecision > NDigits - 1) in toString()
3925 Str.append(FormatPrecision - NDigits + 1, '0'); in toString()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h435 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
685 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision,
1238 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
1241 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));