Home | History | Annotate | Download | only in unit

Lines Matching full:setprecision

197       str << scientific << setprecision(50) << limits::max();
279 str << setprecision(limits::digits10 + 2) << limits::max();
292 str << setprecision(limits::digits10 + 1) << limits::max();
414 ostr << setprecision(200) << 1.23457e+17f;
422 ostr << setprecision(200) << numeric_limits<float>::min();
450 ostr << fixed << showpos << setprecision(100) << 1.23457e+17f;
460 ostr << scientific << setprecision(8) << 0.12345678f;
470 ostr << fixed << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
478 ostr << fixed << showpos << setprecision(8) << setw(30) << setfill('0') << 0.12345678f;
486 ostr << fixed << showpos << setprecision(8) << setw(30) << left << setfill('0') << 0.12345678f;
494 ostr << fixed << showpos << setprecision(8) << setw(30) << internal << setfill('0') << 0.12345678f;
502 ostr << fixed << showpos << setprecision(100) << 1.234567e+17;
513 ostr << fixed << showpos << setprecision(100) << 1.234567e+17l;
524 ostr << scientific << setprecision(50) << 0.0;
531 ostr << fixed << setprecision(100) << numeric_limits<float>::max();
539 ostr << setprecision(100) << numeric_limits<double>::max();
548 ostr << setprecision(100) << numeric_limits<long double>::max();
557 // ostr << setprecision(-numeric_limits<float>::min_exponent10 + numeric_limits<float>::digits10 + 9) << numeric_limits<float>::min();
565 // ostr << setprecision(-numeric_limits<double>::min_exponent10 + numeric_limits<double>::digits10) << numeric_limits<double>::min();
574 // ostr << setprecision(-numeric_limits<long double>::min_exponent10 + numeric_limits<long double>::digits10) << numeric_limits<long double>::min();
1231 os.str(""); os << fixed << setprecision(3) << showpos << val; \