Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp3684 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3688 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
3715 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3717 if (N <= FormatPrecision) return; in AdjustToPrecision()
3720 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
3760 void IEEEFloat::toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, in toString() argument
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()
[all …]
/netbsd-src/external/apache2/llvm/dist/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));