| /openbsd-src/gnu/gcc/libstdc++-v3/include/debug/ |
| H A D | macros.h | 56 #define __glibcxx_check_valid_range(_First,_Last) \ argument 57 _GLIBCXX_DEBUG_VERIFY(__gnu_debug::__valid_range(_First, _Last), \ 59 ._M_iterator(_First, #_First) \ 92 #define __glibcxx_check_insert_range(_Position,_First,_Last) \ argument 93 __glibcxx_check_valid_range(_First,_Last); \ 121 #define __glibcxx_check_erase_range(_First,_Last) \ argument 122 __glibcxx_check_valid_range(_First,_Last); \ 123 _GLIBCXX_DEBUG_VERIFY(_First._M_attached_to(this), \ 126 ._M_iterator(_First, #_First) \ 145 #define __glibcxx_check_strict_weak_ordering(_First,_Last) \ argument [all …]
|
| H A D | debug.h | 69 # define __glibcxx_requires_valid_range(_First,_Last) argument 70 # define __glibcxx_requires_sorted(_First,_Last) argument 71 # define __glibcxx_requires_sorted_pred(_First,_Last,_Pred) argument 72 # define __glibcxx_requires_partitioned(_First,_Last,_Value) argument 73 # define __glibcxx_requires_partitioned_pred(_First,_Last,_Value,_Pred) argument 74 # define __glibcxx_requires_heap(_First,_Last) argument 75 # define __glibcxx_requires_heap_pred(_First,_Last,_Pred) argument 120 # define __glibcxx_requires_valid_range(_First,_Last) \ argument 121 __glibcxx_check_valid_range(_First,_Last) 122 # define __glibcxx_requires_sorted(_First,_Last) \ argument [all …]
|
| /openbsd-src/gnu/llvm/libcxx/src/ryu/ |
| H A D | d2fixed.cpp | 235 [[nodiscard]] to_chars_result __d2fixed_buffered_n(char* _First, char* const _Last, const double __… in __d2fixed_buffered_n() argument 237 char* const _Original_first = _First; in __d2fixed_buffered_n() 247 if (_Last - _First < _Total_zero_length) { in __d2fixed_buffered_n() 251 *_First++ = '0'; in __d2fixed_buffered_n() 253 *_First++ = '.'; in __d2fixed_buffered_n() 254 _VSTD::memset(_First, '0', __precision); in __d2fixed_buffered_n() 255 _First += __precision; in __d2fixed_buffered_n() 257 return { _First, errc{} }; in __d2fixed_buffered_n() 286 if (_Last - _First < 9) { in __d2fixed_buffered_n() 289 __append_nine_digits(__digits, _First); in __d2fixed_buffered_n() [all …]
|
| H A D | f2s.cpp | 295 …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* con… 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() 553 _Mid = _First + __olength; in __to_chars() 556 _Mid = _First + _Total_fixed_length; in __to_chars() 585 _VSTD::memset(_First + __olength, '0', static_cast<size_t>(_Ryu_exponent)); in __to_chars() 590 _VSTD::memmove(_First, _First + 1, static_cast<size_t>(_Whole_digits)); in __to_chars() [all …]
|
| H A D | d2s.cpp | 355 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline to_chars_result __to_chars(char* const _First, char* con… 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() 506 _Mid = _First + __olength; in __to_chars() 509 _Mid = _First + _Total_fixed_length; in __to_chars() 562 _VSTD::memset(_First + __olength, '0', static_cast<size_t>(_Ryu_exponent)); in __to_chars() 567 _VSTD::memmove(_First, _First + 1, static_cast<size_t>(_Whole_digits)); in __to_chars() 568 _First[_Whole_digits] = '.'; in __to_chars() 571 _First[0] = '0'; in __to_chars() 572 _First[1] = '.'; in __to_chars() [all …]
|
| /openbsd-src/gnu/llvm/libcxx/src/include/ |
| H A D | to_chars_floating_point.h | 100 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 _VSTD::memset(_First, '0', static_cast<size_t>(_Precision)); 311 _First += _Precision; 329 *_First++ = 'p'; 330 *_First++ = _Sign_character; 333 return _VSTD::to_chars(_First, _Last, _Absolute_exponent); [all …]
|
| /openbsd-src/gnu/llvm/libcxx/src/include/ryu/ |
| H A D | ryu.h | 92 … char* const _First, char* const _Last, const _Floating _Value, const chars_format _Fmt) noexcept { in _Floating_to_chars_ryu() argument 94 return __f2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu() 96 return __d2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu() 102 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_scientific_precision() argument 118 return __d2exp_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision)); 123 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_fixed_precision() argument 139 return __d2fixed_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision));
|
| H A D | d2fixed.h | 53 [[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 D | f2s.h | 49 [[nodiscard]] to_chars_result __f2s_buffered_n(char* const _First, char* const _Last, const float _…
|
| H A D | d2s.h | 56 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double …
|
| /openbsd-src/gnu/llvm/libcxx/include/__type_traits/ |
| H A D | disjunction.h | 26 template <class _Res, class _First, class... _Rest> 28 …typename _OrImpl<!bool(_First::value) && sizeof...(_Rest) != 0>::template _Result<_First, _Rest...…
|
| H A D | can_extract_key.h | 35 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…
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/bits/ |
| H A D | boost_concept_check.h | 276 template <class _First, class _Second> \ 282 _First __a; \ 287 template <class _Ret, class _First, class _Second> \ 293 _First __a; \ 355 template <class _Func, class _Return, class _First, class _Second> 362 _First __first; 367 template <class _Func, class _First, class _Second> 368 struct _BinaryFunctionConcept<_Func, void, _First, _Second> 374 _First __first; 388 template <class _Func, class _First, class _Second> [all …]
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| H A D | boost_concept_check.h | 270 template <class _First, class _Second> \ 276 _First __a; \ 281 template <class _Ret, class _First, class _Second> \ 287 _First __a; \ 349 template <class _Func, class _Return, class _First, class _Second> 356 _First __first; 361 template <class _Func, class _First, class _Second> 362 struct _BinaryFunctionConcept<_Func, void, _First, _Second> 368 _First __first; 382 template <class _Func, class _First, class _Second> [all …]
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | PPCallbacks.h | 438 PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First, in PPChainedCallbacks() argument 440 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
|
| /openbsd-src/gnu/llvm/libcxx/include/ |
| H A D | __hash_table | 1054 template <class _First, class _Second> 1056 …__enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, pair<iterato… 1057 __emplace_unique(_First&& __f, _Second&& __s) { 1058 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f), 1307 template <class _First, class ..._Rest> 1308 __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest); 2378 template <class _First, class ..._Rest> 2381 size_t __hash, _First&& __f, _Rest&& ...__rest) 2383 static_assert(!__is_hash_value_type<_First, _Rest...>::value, 2388 _VSTD::forward<_First>(__f),
|
| H A D | __tree | 1188 template <class _First, class _Second> 1190 …__enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, pair<iterato… 1191 __emplace_unique(_First&& __f, _Second&& __s) { 1192 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f), 1230 template <class _First, class _Second> 1232 __enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, iterator> 1233 __emplace_hint_unique(const_iterator __p, _First&& __f, _Second&& __s) { 1235 _VSTD::forward<_First>(__f),
|