Searched refs:_Fmt (Results 1 – 6 of 6) sorted by relevance
| /src/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | f2s.cpp | 420 chars_format _Fmt, const uint32_t __ieeeMantissa, const uint32_t __ieeeExponent) { in __to_chars() argument 427 if (_Fmt == chars_format{}) { in __to_chars() 446 _Fmt = chars_format::fixed; in __to_chars() 448 _Fmt = chars_format::scientific; in __to_chars() 450 } else if (_Fmt == chars_format::general) { in __to_chars() 457 _Fmt = chars_format::fixed; in __to_chars() 459 _Fmt = chars_format::scientific; in __to_chars() 463 if (_Fmt == chars_format::fixed) { in __to_chars() 664 const chars_format _Fmt) { in __f2s_buffered_n() argument 671 if (_Fmt == chars_format::scientific) { in __f2s_buffered_n() [all …]
|
| H A D | d2s.cpp | 356 chars_format _Fmt, const double __f) { in __to_chars() argument 363 if (_Fmt == chars_format{}) { in __to_chars() 382 _Fmt = chars_format::fixed; in __to_chars() 384 _Fmt = chars_format::scientific; in __to_chars() 386 } else if (_Fmt == chars_format::general) { in __to_chars() 393 _Fmt = chars_format::fixed; in __to_chars() 395 _Fmt = chars_format::scientific; in __to_chars() 399 if (_Fmt == chars_format::fixed) { in __to_chars() 704 const chars_format _Fmt) { in __d2s_buffered_n() argument 711 if (_Fmt == chars_format::scientific) { in __d2s_buffered_n() [all …]
|
| /src/contrib/llvm-project/libcxx/src/include/ryu/ |
| H A D | ryu.h | 90 … char* const _First, char* const _Last, const _Floating _Value, const chars_format _Fmt) noexcept { in _Floating_to_chars_ryu() argument 92 return __f2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu() 94 return __d2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu()
|
| H A D | f2s.h | 49 … __f2s_buffered_n(char* const _First, char* const _Last, const float __f, const chars_format _Fmt);
|
| H A D | d2s.h | 56 …__d2s_buffered_n(char* const _First, char* const _Last, const double __f, const chars_format _Fmt);
|
| /src/contrib/llvm-project/libcxx/src/include/ |
| H A D | to_chars_floating_point.h | 992 …char* _First, char* const _Last, _Floating _Value, const chars_format _Fmt, const int _Precision) … 995 …_LIBCPP_ASSERT_INTERNAL(_Fmt == chars_format{}, ""); // plain overload must pass chars_format{} in… 997 …_LIBCPP_ASSERT_ARGUMENT_WITHIN_DOMAIN(_Fmt == chars_format::general || _Fmt == chars_format::scien… 998 || _Fmt == chars_format::fixed || _Fmt == chars_format::hex, 1055 if (_Fmt == chars_format::hex) { 1059 return _Floating_to_chars_ryu(_First, _Last, _Value, _Fmt); 1061 switch (_Fmt) {
|