Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp3946 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3950 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
3977 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3979 if (N <= FormatPrecision) return; in AdjustToPrecision()
3982 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
4022 void IEEEFloat::toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, in toString() argument
4042 if (FormatPrecision > 1) in toString()
4043 Str.append(FormatPrecision - 1, '0'); in toString()
4065 if (!FormatPrecision) { in toString()
4073 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h449 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
706 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision,
1256 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
1259 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));