Home
last modified time | relevance | path

Searched refs:_Last (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp235 [[nodiscard]] to_chars_result __d2fixed_buffered_n(char* _First, char* const _Last, const double __… in __d2fixed_buffered_n() argument
247 if (_Last - _First < _Total_zero_length) { in __d2fixed_buffered_n()
248 return { _Last, errc::value_too_large }; in __d2fixed_buffered_n()
286 if (_Last - _First < 9) { in __d2fixed_buffered_n()
287 return { _Last, errc::value_too_large }; in __d2fixed_buffered_n()
293 if (_Last - _First < static_cast<ptrdiff_t>(__olength)) { in __d2fixed_buffered_n()
294 return { _Last, errc::value_too_large }; in __d2fixed_buffered_n()
303 if (_First == _Last) { in __d2fixed_buffered_n()
304 return { _Last, errc::value_too_large }; in __d2fixed_buffered_n()
309 if (_First == _Last) { in __d2fixed_buffered_n()
[all …]
H A Df2s.cpp297 …HIDE_FROM_ABI inline to_chars_result _Large_integer_to_chars(char* const _First, char* const _Last, in _Large_integer_to_chars() argument
401 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in _Large_integer_to_chars()
402 return { _Last, errc::value_too_large }; in _Large_integer_to_chars()
421 …ROM_ABI inline to_chars_result __to_chars(char* const _First, char* const _Last, const __floating_… in __to_chars() argument
503 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in __to_chars()
504 return { _Last, errc::value_too_large }; in __to_chars()
550 return _Large_integer_to_chars(_First, _Last, _Mantissa2, _Exponent2); in __to_chars()
606 if (_Last - _First < static_cast<ptrdiff_t>(_Total_scientific_length)) { in __to_chars()
607 return { _Last, errc::value_too_large }; in __to_chars()
665 [[nodiscard]] to_chars_result __f2s_buffered_n(char* const _First, char* const _Last, const float _… in __f2s_buffered_n() argument
[all …]
H A Dd2s.cpp356 …ROM_ABI inline to_chars_result __to_chars(char* const _First, char* const _Last, const __floating_… in __to_chars() argument
444 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in __to_chars()
445 return { _Last, errc::value_too_large }; in __to_chars()
502 return __d2fixed_buffered_n(_First, _Last, __f, 0); in __to_chars()
582 if (_Last - _First < static_cast<ptrdiff_t>(_Total_scientific_length)) { in __to_chars()
583 return { _Last, errc::value_too_large }; in __to_chars()
704 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double … in __d2s_buffered_n() argument
713 if (_Last - _First < 5) { in __d2s_buffered_n()
714 return { _Last, errc::value_too_large }; in __d2s_buffered_n()
723 if (_First == _Last) { in __d2s_buffered_n()
[all …]
/freebsd/contrib/llvm-project/libcxx/src/include/
H A Dto_chars_floating_point.h100 char* _First, char* const _Last, const _Floating _Value, int _Precision) noexcept {
186 ptrdiff_t _Buffer_size = _Last - _First;
189 return {_Last, errc::value_too_large};
201 return {_Last, errc::value_too_large};
333 return std::to_chars(_First, _Last, _Absolute_exponent);
339 char* _First, char* const _Last, const _Floating _Value) noexcept {
358 if (_Last - _First < static_cast<ptrdiff_t>(_Len)) {
359 return {_Last, errc::value_too_large};
383 if (_First == _Last) {
384 return {_Last, err
[all...]
/freebsd/contrib/llvm-project/libcxx/src/include/ryu/
H A Dryu.h90 char* const _First, char* const _Last, const _Floating _Value, const chars_format _Fmt) noexcept { in _Floating_to_chars_ryu()
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()
100 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_scientific_precision()
113 return {_Last, errc::value_too_large};
116 return __d2exp_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision));
121 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_fixed_precision()
134 return {_Last, errc::value_too_large};
137 return __d2fixed_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision));
91 _Floating_to_chars_ryu(char * const _First,char * const _Last,const _Floating _Value,const chars_format _Fmt) _Floating_to_chars_ryu() argument
101 _Floating_to_chars_scientific_precision(char * const _First,char * const _Last,const _Floating _Value,int _Precision) _Floating_to_chars_scientific_precision() argument
122 _Floating_to_chars_fixed_precision(char * const _First,char * const _Last,const _Floating _Value,int _Precision) _Floating_to_chars_fixed_precision() argument
H A Dd2fixed.h53 [[nodiscard]] to_chars_result __d2fixed_buffered_n(char* _First, char* const _Last, const double __…
54 [[nodiscard]] to_chars_result __d2exp_buffered_n(char* _First, char* const _Last, const double __d,…
H A Df2s.h49 [[nodiscard]] to_chars_result __f2s_buffered_n(char* const _First, char* const _Last, const float _…
H A Dd2s.h56 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double …