Home
last modified time | relevance | path

Searched refs:_First (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp234 [[nodiscard]] to_chars_result __d2fixed_buffered_n(char* _First, char* const _Last, const double __d, in __d2fixed_buffered_n() argument
236 char* const _Original_first = _First; in __d2fixed_buffered_n()
246 if (_Last - _First < _Total_zero_length) { in __d2fixed_buffered_n()
250 *_First++ = '0'; in __d2fixed_buffered_n()
252 *_First++ = '.'; in __d2fixed_buffered_n()
253 std::memset(_First, '0', __precision); in __d2fixed_buffered_n()
254 _First += __precision; in __d2fixed_buffered_n()
256 return { _First, errc{} }; in __d2fixed_buffered_n()
285 if (_Last - _First < 9) { in __d2fixed_buffered_n()
288 __append_nine_digits(__digits, _First); in __d2fixed_buffered_n()
424 __d2exp_buffered_n(char * _First,char * const _Last,const double __d,uint32_t __precision) __d2exp_buffered_n() argument
[all...]
H A Df2s.cpp295 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline to_chars_result _Large_integer_to_chars(char* const _First, char* const _Last, in _Large_integer_to_chars() argument
399 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in _Large_integer_to_chars()
403 char* _Result = _First; in _Large_integer_to_chars()
419 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline to_chars_result __to_chars(char* const _First, char* const _Last, const __floating_decimal_32 __v, in __to_chars() argument
501 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in __to_chars()
548 return _Large_integer_to_chars(_First, _Last, _Mantissa2, _Exponent2); in __to_chars()
552 // Print the decimal digits, left-aligned within [_First, _First + _Total_fixed_length). in __to_chars()
553 _Mid = _First + __olength; in __to_chars()
555 // Print the decimal digits, right-aligned within [_First, _Firs in __to_chars()
663 __f2s_buffered_n(char * const _First,char * const _Last,const float __f,const chars_format _Fmt) __f2s_buffered_n() argument
[all...]
H A Dd2s.cpp355 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline to_chars_result __to_chars(char* const _First, char* const _Last, const __floating_decimal_64 __v, in __to_chars() argument
443 if (_Last - _First < static_cast<ptrdiff_t>(_Total_fixed_length)) { in __to_chars()
501 return __d2fixed_buffered_n(_First, _Last, __f, 0); in __to_chars()
505 // Print the decimal digits, left-aligned within [_First, _First + _Total_fixed_length). in __to_chars()
506 _Mid = _First + __olength; in __to_chars()
508 // Print the decimal digits, right-aligned within [_First, _First + _Total_fixed_length). in __to_chars()
509 _Mid = _First + _Total_fixed_length; in __to_chars()
562 std::memset(_First in __to_chars()
703 __d2s_buffered_n(char * const _First,char * const _Last,const double __f,const chars_format _Fmt) __d2s_buffered_n() argument
[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;
275 *_First++ = _Leading_hexit;
286 *_First++ = '.';
299 *_First++ = _Hexit;
310 std::memset(_First, '0', static_cast<size_t>(_Precision));
311 _First += _Precision;
329 *_First++ = 'p';
330 *_First++ = _Sign_character;
333 return std::to_chars(_First, _Las
[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()
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()
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 …
/freebsd/contrib/llvm-project/libcxx/include/__type_traits/
H A Ddisjunction.h26 template <class _Res, class _First, class... _Rest>
28 …typename _OrImpl<!bool(_First::value) && sizeof...(_Rest) != 0>::template _Result<_First, _Rest...…
H A Dcan_extract_key.h35 template <class _Pair, class _Key, class _First, class _Second>
36 struct __can_extract_key<_Pair, _Key, pair<_First, _Second> >
37 …: __conditional_t<_IsSame<__remove_const_t<_First>, _Key>::value, __extract_key_first_tag, __extra…
/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DPPCallbacks.h474 PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First, in PPChainedCallbacks() argument
476 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
/freebsd/contrib/llvm-project/libcxx/include/
H A D__hash_table800 template <class _First,
802 … __enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, int> = 0>
803 _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> __emplace_unique(_First&& __f, _Second&& __s) {
804 return __emplace_unique_key_args(__f, std::forward<_First>(__f), std::forward<_Second>(__s));
986 template <class _First, class... _Rest>
987 …_LIBCPP_HIDE_FROM_ABI __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... …
1811 template <class _First, class... _Rest>
1813 __hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(size_t __hash, _First&& __f, _Rest&…
1814 …static_assert(!__is_hash_value_type<_First, _Rest...>::value, "Construct cannot be called with a h…
1819 …__na, _NodeTypes::__get_ptr(__h->__get_value()), std::forward<_First>(__f), std::forward<_Rest>(__…
H A D__tree1035 template <class _First,
1037 … __enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, int> = 0>
1038 _LIBCPP_HIDE_FROM_ABI pair<iterator, bool> __emplace_unique(_First&& __f, _Second&& __s) {
1039 return __emplace_unique_key_args(__f, std::forward<_First>(__f), std::forward<_Second>(__s));
1067 template <class _First,
1069 … __enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, int> = 0>
1070 …_LIBCPP_HIDE_FROM_ABI iterator __emplace_hint_unique(const_iterator __p, _First&& __f, _Second&& _…
1071 …return __emplace_hint_unique_key_args(__p, __f, std::forward<_First>(__f), std::forward<_Second>(_…
/freebsd/contrib/llvm-project/libcxx/include/__expected/
H A Dexpected.h133 template <class _First, class _Second>
136 _LIBCPP_NO_UNIQUE_ADDRESS _First __first;
139 return sizeof(__x) == sizeof(_First);