Home
last modified time | relevance | path

Searched refs:__units (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/libstdc++/include/bits/
Dlocale_facets.tcc1335 ios_base::iostate& __err, string& __units) const in _M_extract()
1538 __units.swap(__res); in _M_extract()
1551 ios_base::iostate& __err, double& __units) const in __do_get()
1556 std::__convert_to_v(__str.c_str(), __units, __err, _S_get_c_locale()); in __do_get()
1565 ios_base::iostate& __err, long double& __units) const in do_get()
1570 std::__convert_to_v(__str.c_str(), __units, __err, _S_get_c_locale()); in do_get()
1762 double __units) const in __do_put()
1763 { return this->do_put(__s, __intl, __io, __fill, (long double) __units); } in __do_put()
1770 long double __units) const in do_put()
1781 "%.*Lf", 0, __units); in do_put()
[all …]
Dlocale_facets.h4098 ios_base::iostate& __err, long double& __units) const in get() argument
4099 { return this->do_get(__s, __end, __intl, __io, __err, __units); } in get()
4147 ios_base::iostate& __err, double& __units) const;
4151 ios_base::iostate& __err, long double& __units) const;
4169 ios_base::iostate& __err, long double& __units) const;
4236 char_type __fill, long double __units) const in put() argument
4237 { return this->do_put(__s, __intl, __io, __fill, __units); } in put()
4288 double __units) const;
4292 long double __units) const;
4321 long double __units) const;
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
HDlocale3359 long double __units) const
3361 return do_put(__s, __intl, __iob, __fl, __units);
3378 char_type __fl, long double __units) const;
3391 long double __units) const
3399 size_t __n = static_cast<size_t>(snprintf(__bb, __bs, "%.0Lf", __units));
3405 … __n = static_cast<size_t>(__libcpp_asprintf_l(&__bb, _LIBCPP_GET_C_LOCALE, "%.0Lf", __units));
/freebsd-11-stable/contrib/libstdc++/
DChangeLog-20044964 to parse the value; use swap to change __units.