Searched refs:__precision (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/libcxx/src/ryu/ |
| H A D | d2fixed.cpp | 236 const uint32_t __precision) { in __d2fixed_buffered_n() argument 252 if (__precision > 0) { in __d2fixed_buffered_n() 255 _First += __precision; in __d2fixed_buffered_n() 308 if (__precision > 0) { in __d2fixed_buffered_n() 326 _First += __precision; in __d2fixed_buffered_n() 419 _VSTD::memset(_First, '0', __precision); in __d2fixed_buffered_n() 420 _First += __precision; in __d2fixed_buffered_n() 426 uint32_t __precision) { in __d2exp_buffered_n() argument 441 if (__precision > 0) { in __d2exp_buffered_n() 444 _First += __precision; in __d2exp_buffered_n() [all …]
|
| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | formatter_floating_point.h | 67 to_chars_result __r = _VSTD::to_chars(__first, __last, __value, __fmt, __precision); in __to_buffer() 106 static constexpr size_t __float_buffer_size(int __precision) { in __float_buffer_size() argument 108 return 4 + _Traits::__max_integral + __precision + _Traits::__max_fractional_value; in __float_buffer_size() 148 explicit _LIBCPP_HIDE_FROM_ABI __float_buffer(int __precision) 149 : __precision_(__precision != -1 ? __precision : _Traits::__max_fractional) { 183 _LIBCPP_HIDE_FROM_ABI int __precision() const { return __precision_; } 264 if (__precision == -1) 362 int __precision, char* __integral) { 371 __result.__radix_point = __result.__last - (__precision + bool(__precision)); 461 __buffer, __value, __has_precision ? __buffer.__precision() : -1, __first); [all …]
|
| H A D | formatter_output.h | 278 _LIBCPP_HIDE_FROM_ABI int __truncate(basic_string_view<_CharT>& __str, int __precision) { in __truncate() argument 280 …__format_spec::__estimate_column_width(__str, __precision, __format_spec::__column_width_rounding:… in __truncate()
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | charconv.cpp | 71 …_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __precision) { in to_chars() argument 73 __precision); in to_chars() 76 …result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __precision) { in to_chars() argument 78 __precision); in to_chars() 81 …t to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int __precision) { in to_chars() argument 83 __first, __last, static_cast<double>(__value), __fmt, __precision); in to_chars()
|
| /llvm-project-15.0.7/libcxx/src/include/ryu/ |
| H A D | d2fixed.h | 53 …_d2fixed_buffered_n(char* _First, char* const _Last, const double __d, const uint32_t __precision); 54 …result __d2exp_buffered_n(char* _First, char* const _Last, const double __d, uint32_t __precision);
|
| /llvm-project-15.0.7/libcxx/test/libcxx/utilities/format/format.string/format.string.std/ |
| H A D | concepts_precision.h | 13 parser.__precision; in requires()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | charconv | 812 …s_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __precision); 815 …_result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __precision); 818 …lt to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int __precision);
|
| H A D | format | 318 __format::__compile_time_validate_integral(__ctx.arg(__formatter.__precision));
|