Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4067 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
4071 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
4098 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
4100 if (N <= FormatPrecision) return; in AdjustToPrecision()
4103 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
4143 APInt significand, unsigned FormatPrecision, in toStringImpl() argument
4152 if (!FormatPrecision) { in toStringImpl()
4160 FormatPrecision = 2 + semanticsPrecision * 59 / 196; in toStringImpl()
4205 AdjustToPrecision(significand, exp, FormatPrecision); in toStringImpl()
4240 AdjustToPrecision(buffer, exp, FormatPrecision); in toStringImpl()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h508 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
788 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision,
1384 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
1387 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));