Lines Matching refs:_Fmt
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()
735 if (_Fmt == chars_format::fixed) { in __d2s_buffered_n()
778 return __to_chars(_First, _Last, __v, _Fmt, __f); in __d2s_buffered_n()