Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4002 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 DAPFloat.h485 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));