Lines Matching defs:_Last
355 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline to_chars_result __to_chars(char* const _First, char* const _Last, const __floating_decimal_64 __v,
443 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) {
444 return { _Last, errc::value_too_large };
501 return __d2fixed_buffered_n(_First, _Last, __f, 0);
581 if (_Last - _First < static_cast<ptrdiff_t>(_Total_scientific_length)) {
582 return { _Last, errc::value_too_large };
703 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double __f,
712 if (_Last - _First < 5) {
713 return { _Last, errc::value_too_large };
722 if (_First == _Last) {
723 return { _Last, errc::value_too_large };
754 return __d2fixed_buffered_n(_First, _Last, __f, 0);
778 return __to_chars(_First, _Last, __v, _Fmt, __f);