Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DAPFloat.cpp3493 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3497 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision()
3524 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument
3526 if (N <= FormatPrecision) return; in AdjustToPrecision()
3529 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision()
3570 unsigned FormatPrecision, in toString() argument
3606 if (!FormatPrecision) { in toString()
3614 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString()
3657 AdjustToPrecision(significand, exp, FormatPrecision); in toString()
3686 AdjustToPrecision(buffer, exp, FormatPrecision); in toString()
[all …]
/external/llvm/include/llvm/ADT/
DAPFloat.h491 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,