Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPFloat.cpp3296 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3300 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
3329 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3331 if (N <= FormatPrecision) return; in AdjustToPrecision()
3334 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
3375 unsigned FormatPrecision, in toString() argument
3411 if (!FormatPrecision) { in toString()
3416 FormatPrecision = (semantics->precision * 59 + 195) / 196; in toString()
3459 AdjustToPrecision(significand, exp, FormatPrecision); in toString()
3488 AdjustToPrecision(buffer, exp, FormatPrecision); in toString()
[all …]
/external/llvm/include/llvm/ADT/
DAPFloat.h364 unsigned FormatPrecision = 0,