Searched refs:__maximum (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/llvm-project/libcxx/src/ryu/ |
| H A D | d2fixed.cpp | 358 const uint32_t __maximum = __precision - 9 * __i; in __d2fixed_buffered_n() local 360 for (uint32_t __k = 0; __k < 9 - __maximum; ++__k) { in __d2fixed_buffered_n() 373 if (__maximum > 0) { in __d2fixed_buffered_n() 374 if (_Last - _First < static_cast<ptrdiff_t>(__maximum)) { in __d2fixed_buffered_n() 377 __append_c_digits(__maximum, __digits, _First); in __d2fixed_buffered_n() 378 _First += __maximum; in __d2fixed_buffered_n() 558 const uint32_t __maximum = __precision - __printedDigits; in __d2exp_buffered_n() local 563 if (__availableDigits > __maximum) { in __d2exp_buffered_n() 564 for (uint32_t __k = 0; __k < __availableDigits - __maximum; ++__k) { in __d2exp_buffered_n() 587 if (_Last - _First < static_cast<ptrdiff_t>(__maximum)) { in __d2exp_buffered_n() [all …]
|
| /src/contrib/llvm-project/libcxx/include/__format/ |
| H A D | parser_std_format_spec.h | 1034 …_Iterator __first, _Iterator __last, size_t __maximum, __column_width_rounding __rounding) noexcep… 1039 while (__result.__last_ != __last && __result.__width_ <= __maximum) { 1048 if (__rounding == __column_width_rounding::__down && __result.__width_ + __width > __maximum) 1107 … basic_string_view<_CharT> __str, size_t __maximum, __column_width_rounding __rounding) noexcept { 1115 if (__str.empty() || __maximum == 0) 1128 --__maximum; 1133 if (__maximum == 0) { 1141 ++__maximum; 1146 … __detail::__estimate_column_width_grapheme_clustering(__it, __str.end(), __maximum, __rounding); 1154 __estimate_column_width(basic_string_view<_CharT> __str, size_t __maximum, __column_width_rounding)… [all …]
|