Home | History | Annotate | Download | only in Support

Lines Matching refs:Precision

46   // Shift as little as possible to maximize precision.
62 // Use 64-bit math and canonicalize the dividend to gain precision.
162 static std::string toStringAPFloat(uint64_t D, int E, unsigned Precision) {
186 Float.toString(Chars, Precision, 0);
201 unsigned Precision) {
231 return toStringAPFloat(D, E, Precision);
252 // digits. Save the precision we're losing in Extra.
274 (!Precision || DigitsOut <= Precision || SinceDot < 2));
276 // Return early for maximum precision.
277 if (!Precision || DigitsOut <= Precision)
282 std::max(Str.size() - (DigitsOut - Precision), AfterDot + 1);
312 int Width, unsigned Precision) {
313 return OS << toString(D, E, Width, Precision);