Home
last modified time | relevance | path

Searched refs:showpoint (Results 1 – 15 of 15) sorted by relevance

/netbsd/external/lgpl3/gmp/dist/tests/cxx/
H A Dt-ostream.cc270 { "0", "0.00000", ios::dec | ios::showpoint }, in check_mpf()
272 { "0", "0.", ios::dec | ios::fixed | ios::showpoint }, in check_mpf()
274 { "0", "0.000000e+00", ios::dec | ios::scientific | ios::showpoint }, in check_mpf()
277 { "0", "0.000", ios::dec | ios::showpoint, 0, 4 }, in check_mpf()
279 { "0", "0.0000", ios::dec | ios::fixed | ios::showpoint, 0, 4 }, in check_mpf()
285 { "1", "1.00000", ios::dec | ios::showpoint }, in check_mpf()
287 { "1", "1.", ios::dec | ios::fixed | ios::showpoint }, in check_mpf()
292 { "1", "1.000", ios::dec | ios::showpoint, 0, 4 }, in check_mpf()
294 { "1", "1.0000", ios::dec | ios::fixed | ios::showpoint, 0, 4 }, in check_mpf()
310 { "1234", "*****1234.", ios::dec | ios::showpoint, 10, 4, '*' }, in check_mpf()
[all …]
/netbsd/external/lgpl3/gmp/dist/cxx/
H A Dosfuns.cc107 p->showpoint = ((o.flags() & ios::showpoint) != 0); in __gmp_doprnt_params_from_ios()
115 p->showtrailing = p->showpoint; in __gmp_doprnt_params_from_ios()
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dios_base.h380 static const fmtflags showpoint = _S_showpoint; in _GLIBCXX_VISIBILITY()
940 showpoint(ios_base& __base) in _GLIBCXX_VISIBILITY()
942 __base.setf(ios_base::showpoint); in _GLIBCXX_VISIBILITY()
950 __base.unsetf(ios_base::showpoint); in _GLIBCXX_VISIBILITY()
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dios_base.h385 static const fmtflags showpoint = _S_showpoint; in _GLIBCXX_VISIBILITY()
953 showpoint(ios_base& __base) in _GLIBCXX_VISIBILITY()
955 __base.setf(ios_base::showpoint); in _GLIBCXX_VISIBILITY()
963 __base.unsetf(ios_base::showpoint); in _GLIBCXX_VISIBILITY()
/netbsd/external/lgpl3/gmp/dist/printf/
H A Ddoprnt.c225 param.showpoint = 0; in __gmp_doprnt()
366 param.showpoint = 1; in __gmp_doprnt()
H A Ddoprntf.c315 pointlen = ((fraczeros + fraclen + preczeros) != 0 || p->showpoint != 0) in __gmp_doprnt_mpf()
/netbsd/external/apache2/llvm/dist/libcxx/include/
H A Dios41 static constexpr fmtflags showpoint;
171 ios_base& showpoint (ios_base& str);
246 static const fmtflags showpoint = 0x0400;
880 showpoint(ios_base& __str)
882 __str.setf(ios_base::showpoint);
890 __str.unsetf(ios_base::showpoint);
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dlocale_facets.cc70 if (__flags & ios_base::showpoint) in _S_format_float()
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dlocale_facets.cc70 if (__flags & ios_base::showpoint) in _S_format_float()
/netbsd/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/
H A Dios.cc47 const ios_base::fmtflags ios_base::showpoint; member in std::ios_base
/netbsd/external/gpl3/gcc/dist/libstdc++-v3/src/c++11/
H A Dios.cc47 const ios_base::fmtflags ios_base::showpoint; member in std::ios_base
/netbsd/external/apache2/llvm/dist/libcxx/src/
H A Dios.cpp87 const ios_base::fmtflags ios_base::showpoint; member in ios_base
H A Dlocale.cpp4628 if (__flags & ios_base::showpoint) in __format_float()
/netbsd/external/lgpl3/gmp/dist/
H A Dgmp-impl.h4468 int showpoint; /* if radix point always shown */ member
H A DChangeLog23474 * printf/doprnt.c: '#' means showpoint and showtrailing for %e, %f, %g.