Searched refs:FormatPrecision (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 4241 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 4245 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() 4272 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 4274 if (N <= FormatPrecision) return; in AdjustToPrecision() 4277 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 4317 APInt significand, unsigned FormatPrecision, in toStringImpl() argument 4326 if (!FormatPrecision) { in toStringImpl() 4334 FormatPrecision = 2 + semanticsPrecision * 59 / 196; in toStringImpl() 4379 AdjustToPrecision(significand, exp, FormatPrecision); in toStringImpl() 4414 AdjustToPrecision(buffer, exp, FormatPrecision); in toStringImpl() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 604 unsigned FormatPrecision = 0, 901 LLVM_ABI void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision, 1496 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1499 toString(Str, FormatPrecision, FormatMaxPadding, TruncateZero));
|