Searched refs:FormatPrecision (Results 1 – 5 of 5) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | APFloat.cpp | 3311 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3315 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() 3344 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3346 if (N <= FormatPrecision) return; in AdjustToPrecision() 3349 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 3390 unsigned FormatPrecision, in toString() argument 3426 if (!FormatPrecision) { in toString() 3431 FormatPrecision = (semantics->precision * 59 + 195) / 196; in toString() 3474 AdjustToPrecision(significand, exp, FormatPrecision); in toString() 3503 AdjustToPrecision(buffer, exp, FormatPrecision); in toString() [all …]
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 3496 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3500 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() 3527 int &exp, unsigned FormatPrecision) { in AdjustToPrecision() argument 3529 if (N <= FormatPrecision) return; in AdjustToPrecision() 3532 unsigned FirstSignificant = N - FormatPrecision; in AdjustToPrecision() 3573 unsigned FormatPrecision, in toString() argument 3609 if (!FormatPrecision) { in toString() 3617 FormatPrecision = 2 + semantics->precision * 59 / 196; in toString() 3660 AdjustToPrecision(significand, exp, FormatPrecision); in toString() 3689 AdjustToPrecision(buffer, exp, FormatPrecision); in toString() [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APFloat.h | 441 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1055 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0, 1057 return getIEEE().toString(Str, FormatPrecision, FormatMaxPadding);
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
D | APFloat.h | 355 unsigned FormatPrecision = 0,
|
/external/llvm/include/llvm/ADT/ |
D | APFloat.h | 493 void toString(SmallVectorImpl<char> &Str, unsigned FormatPrecision = 0,
|