| /freebsd/contrib/llvm-project/libcxx/include/__locale_dir/ |
| H A D | time.h | 28 …_InputIterator& __b, _InputIterator __e, ios_base::iostate& __err, const ctype<_CharT>& __ct, int … in __get_up_to_n_digits() argument 30 if (__b == __e) { in __get_up_to_n_digits() 41 for (++__b, (void)--__n; __b != __e && __n > 0; ++__b, (void)--__n) { in __get_up_to_n_digits() 48 if (__b == __e) in __get_up_to_n_digits() 119 …get_time(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const { in get_time() argument 120 return do_get_time(__b, __e, __iob, __err, __tm); in get_time() 124 …get_date(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) const { in get_date() argument 125 return do_get_date(__b, __e, __iob, __err, __tm); in get_date() 129 …get_weekday(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, tm* __tm) con… in get_weekday() argument 130 return do_get_weekday(__b, __e, __iob, __err, __tm); in get_weekday() [all …]
|
| H A D | num.h | 343 get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, bool& __v) const { 344 return do_get(__b, __e, __iob, __err, __v); 348 get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, long& __v) const { 349 return do_get(__b, __e, __iob, __err, __v); 353 …get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, long long& __v) const… 354 return do_get(__b, __e, __iob, __err, __v); 358 …get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, unsigned short& __v) … 359 return do_get(__b, __e, __iob, __err, __v); 363 …get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, unsigned int& __v) co… 364 return do_get(__b, __e, __iob, __err, __v); [all …]
|
| H A D | money.h | 239 …get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, ios_base::iostate& __err, long dou… in get() argument 240 return do_get(__b, __e, __intl, __iob, __err, __v); in get() 244 …get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, ios_base::iostate& __err, string_t… in get() argument 245 return do_get(__b, __e, __intl, __iob, __err, __v); in get() 254 …do_get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, ios_base::iostate& __err, long … 256 …do_get(iter_type __b, iter_type __e, bool __intl, ios_base& __iob, ios_base::iostate& __err, strin… 261 iter_type __e, 279 …DE_FROM_ABI void __double_or_nothing(unique_ptr<_Tp, void (*)(void*)>& __b, _Tp*& __n, _Tp*& __e) { in __double_or_nothing() argument 281 size_t __cur_cap = static_cast<size_t>(__e - __b.get()) * sizeof(_Tp); in __double_or_nothing() 296 __e = __b.get() + __new_cap; in __double_or_nothing() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/src/include/ryu/ |
| H A D | common.h | 69 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline int32_t __pow5bits(const int32_t __e) { in __pow5bits() argument 73 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __pow5bits() 74 _LIBCPP_ASSERT_INTERNAL(__e <= 3528, ""); in __pow5bits() 75 return static_cast<int32_t>(((static_cast<uint32_t>(__e) * 1217359) >> 19) + 1); in __pow5bits() 79 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow2(const int32_t __e) { in __log10Pow2() argument 81 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __log10Pow2() 82 _LIBCPP_ASSERT_INTERNAL(__e <= 1650, ""); in __log10Pow2() 83 return (static_cast<uint32_t>(__e) * 78913) >> 18; in __log10Pow2() 87 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow5(const int32_t __e) { in __log10Pow5() argument 89 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __log10Pow5() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/ |
| H A D | exponential_functions.h | 45 …e _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(__x, … in frexp() argument 48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() argument 49 return __builtin_frexp(__x, __e); in frexp() 52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() argument 53 return __builtin_frexpl(__x, __e); in frexp() 57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() argument 58 return __builtin_frexp((double)__x, __e); in frexp() 63 …ne _LIBCPP_HIDE_FROM_ABI float ldexp(float __x, int __e) _NOEXCEPT { return __builtin_ldexpf(__x, … in ldexp() argument 66 _LIBCPP_HIDE_FROM_ABI double ldexp(double __x, int __e) _NOEXCEPT { in ldexp() argument 67 return __builtin_ldexp(__x, __e); in ldexp() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__math/ |
| H A D | exponential_functions.h | 45 …e _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(__x, … in frexp() argument 48 _LIBCPP_HIDE_FROM_ABI double frexp(double __x, int* __e) _NOEXCEPT { in frexp() argument 49 return __builtin_frexp(__x, __e); in frexp() 52 inline _LIBCPP_HIDE_FROM_ABI long double frexp(long double __x, int* __e) _NOEXCEPT { in frexp() argument 53 return __builtin_frexpl(__x, __e); in frexp() 57 inline _LIBCPP_HIDE_FROM_ABI double frexp(_A1 __x, int* __e) _NOEXCEPT { in frexp() argument 58 return __builtin_frexp((double)__x, __e); in frexp() 63 …ne _LIBCPP_HIDE_FROM_ABI float ldexp(float __x, int __e) _NOEXCEPT { return __builtin_ldexpf(__x, … in ldexp() argument 66 _LIBCPP_HIDE_FROM_ABI double ldexp(double __x, int __e) _NOEXCEPT { in ldexp() argument 67 return __builtin_ldexp(__x, __e); in ldexp() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__exception/ |
| H A D | exception_ptr.h | 98 _LIBCPP_HIDE_FROM_ABI exception_ptr __make_exception_ptr_explicit(_Ep& __e) _NOEXCEPT { in __make_exception_ptr_explicit() argument 112 ::new (__ex) _Ep2(__e); in __make_exception_ptr_explicit() 122 _LIBCPP_HIDE_FROM_ABI exception_ptr __make_exception_ptr_via_throw(_Ep& __e) _NOEXCEPT { in __make_exception_ptr_via_throw() argument 124 throw __e; in __make_exception_ptr_via_throw() local 131 _LIBCPP_HIDE_FROM_ABI exception_ptr make_exception_ptr(_Ep __e) _NOEXCEPT { in make_exception_ptr() argument 144 return std::__make_exception_ptr_via_throw(__e); in make_exception_ptr() 148 return std::__make_exception_ptr_explicit(__e); in make_exception_ptr() 150 return std::__make_exception_ptr_via_throw(__e); in make_exception_ptr() 197 _LIBCPP_HIDE_FROM_ABI exception_ptr make_exception_ptr(_Ep __e) _NOEXCEPT { 198 return __copy_exception_ptr(std::addressof(__e), __GetExceptionInfo(__e));
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | ranges_find_if_not.h | 44 …auto __pred2 = [&](auto&& __e) -> bool { return !std::invoke(__pred, std::forward<decltype(__e)>(_… 51 …auto __pred2 = [&](auto&& __e) -> bool { return !std::invoke(__pred, std::forward<decltype(__e)>(_…
|
| H A D | ranges_minmax.h | 94 for (auto __e : __r) { local 95 if (__e < __result.min) 96 __result.min = __e; 97 if (__result.max < __e) 98 __result.max = __e;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__atomic/ |
| H A D | atomic_base.h | 66 compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_weak() 68 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak() 70 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order… in compare_exchange_weak() 72 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak() 75 compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_strong() 77 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong() 79 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_ord… in compare_exchange_strong() 81 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong() 84 …compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCE… 85 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __m… [all …]
|
| H A D | atomic.h | 228 …volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type… 229 return __o->compare_exchange_weak(*__e, __d); 234 …atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type __d) _NO… 235 return __o->compare_exchange_weak(*__e, __d); 242 …volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type… 243 return __o->compare_exchange_strong(*__e, __d); 248 …atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type __d) _NO… 249 return __o->compare_exchange_strong(*__e, __d); 257 typename atomic<_Tp>::value_type* __e, 261 return __o->compare_exchange_weak(*__e, __d, __s, __f); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | locale | 260 // Scans [__b, __e) until a match is found in the basic_strings range 271 // If on exit __b == __e, eofbit is set in __err. If __case_sensitive is false, 280 _InputIterator __e, 314 for (size_t __indx = 0; __b != __e && __n_might_match > 0; ++__indx) { 363 if (__b == __e) 602 get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, bool& __v) const { 603 return do_get(__b, __e, __iob, __err, __v); 607 get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, long& __v) const { 608 return do_get(__b, __e, __iob, __err, __v); 612 …get(iter_type __b, iter_type __e, ios_base& __iob, ios_base::iostate& __err, long long& __v) const… [all …]
|
| H A D | list | 831 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 837 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 860 iterator __e = end(); 861 for (; __f != __l && __i != __e; ++__f, (void)++__i) 863 if (__i == __e) 864 __insert_with_sentinel(__e, std::move(__f), std::move(__l)); 866 erase(__i, __e); 872 iterator __e = end(); 873 for (; __n > 0 && __i != __e; --__n, (void)++__i) 875 if (__i == __e) [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__exception/ |
| H A D | exception_ptr.h | 94 _LIBCPP_HIDE_FROM_ABI exception_ptr make_exception_ptr(_Ep __e) _NOEXCEPT { in make_exception_ptr() argument 114 ::new (__ex) _Ep2(__e); in make_exception_ptr() 122 throw __e; in make_exception_ptr() 128 ((void)__e); in make_exception_ptr() 170 _LIBCPP_HIDE_FROM_ABI exception_ptr make_exception_ptr(_Ep __e) _NOEXCEPT { in make_exception_ptr() 171 return __copy_exception_ptr(std::addressof(__e), __GetExceptionInfo(__e)); in make_exception_ptr()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__system_error/ |
| H A D | error_condition.h | 54 _LIBCPP_HIDE_FROM_ABI error_condition(_Ep __e) _NOEXCEPT { 56 *this = make_error_condition(__e); 65 _LIBCPP_HIDE_FROM_ABI error_condition& operator=(_Ep __e) _NOEXCEPT { 67 *this = make_error_condition(__e); 84 inline _LIBCPP_HIDE_FROM_ABI error_condition make_error_condition(errc __e) _NOEXCEPT { 85 return error_condition(static_cast<int>(__e), generic_category());
|
| H A D | error_code.h | 47 _LIBCPP_HIDE_FROM_ABI error_code(_Ep __e) _NOEXCEPT { in error_code() argument 49 *this = make_error_code(__e); in error_code() 58 _LIBCPP_HIDE_FROM_ABI error_code& operator=(_Ep __e) _NOEXCEPT { 60 *this = make_error_code(__e); 82 inline _LIBCPP_HIDE_FROM_ABI error_code make_error_code(errc __e) _NOEXCEPT { in make_error_code() argument 83 return error_code(static_cast<int>(__e), generic_category()); in make_error_code()
|
| /freebsd/contrib/llvm-project/libcxx/include/__system_error/ |
| H A D | error_condition.h | 61 _LIBCPP_HIDE_FROM_ABI error_condition(_Ep __e) _NOEXCEPT { 63 *this = make_error_condition(__e); 72 _LIBCPP_HIDE_FROM_ABI error_condition& operator=(_Ep __e) _NOEXCEPT { 74 *this = make_error_condition(__e); 91 inline _LIBCPP_HIDE_FROM_ABI error_condition make_error_condition(errc __e) _NOEXCEPT { 92 return error_condition(static_cast<int>(__e), generic_category());
|
| H A D | error_code.h | 52 _LIBCPP_HIDE_FROM_ABI error_code(_Ep __e) _NOEXCEPT { in error_code() argument 54 *this = make_error_code(__e); in error_code() 63 _LIBCPP_HIDE_FROM_ABI error_code& operator=(_Ep __e) _NOEXCEPT { 65 *this = make_error_code(__e); 87 inline _LIBCPP_HIDE_FROM_ABI error_code make_error_code(errc __e) _NOEXCEPT { in make_error_code() argument 88 return error_code(static_cast<int>(__e), generic_category()); in make_error_code()
|
| /freebsd/contrib/llvm-project/libcxx/include/__atomic/ |
| H A D | atomic.h | 81 compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_weak() 83 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak() 85 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order… in compare_exchange_weak() 87 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak() 90 compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_strong() 92 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong() 94 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_ord… in compare_exchange_strong() 96 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong() 99 …compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCE… 100 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __m… [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__random/ |
| H A D | discard_block_engine.h | 62 _LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(const _Engine& __e) : __e_(__e), __n_(0) {} in discard_block_engine() argument 64 …_LIBCPP_HIDE_FROM_ABI explicit discard_block_engine(_Engine&& __e) : __e_(std::move(__e)), __n_(0)… in discard_block_engine() argument 152 _Eng __e; variable 154 __is >> __e >> __n; 156 __x.__e_ = __e;
|
| H A D | shuffle_order_engine.h | 86 _LIBCPP_HIDE_FROM_ABI explicit shuffle_order_engine(const _Engine& __e) : __e_(__e) { __init(); } 88 …_LIBCPP_HIDE_FROM_ABI explicit shuffle_order_engine(_Engine&& __e) : __e_(std::move(__e)) { __init… 209 _Eng __e; 211 __is >> __e; 215 __x.__e_ = __e;
|
| H A D | independent_bits_engine.h | 90 _LIBCPP_HIDE_FROM_ABI explicit independent_bits_engine(const _Engine& __e) : __e_(__e) {} in independent_bits_engine() argument 92 _LIBCPP_HIDE_FROM_ABI explicit independent_bits_engine(_Engine&& __e) : __e_(std::move(__e)) {} in independent_bits_engine() argument 194 _Eng __e; variable 195 __is >> __e; 197 __x.__e_ = __e;
|
| H A D | poisson_distribution.h | 161 double __e; in operator() local 165 __e = __edist(__urng); in operator() 168 __t = 1.8 + (__u < 0 ? -__e : __e); in operator() 202 if (__pr.__c_ * std::abs(__u) <= __py * std::exp(__px + __e) - __fy * std::exp(__fx + __e)) in operator()
|
| /freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | path.h | 82 _LIBCPP_HIDE_FROM_ABI bool __is_separator(_ECharT __e) { 84 return __e == _ECharT('/') || __e == _ECharT('\\'); 86 return __e == _ECharT('/'); 143 _Iter __e = __b; 144 for (; *__e != __sentinel; ++__e) 146 return __e; 213 …ROM_ABI static void __append_range(__path_string& __dest, _ECharT const* __b, _ECharT const* __e) { 216 _Narrower()(back_inserter(__utf8), __b, __e); 219 _Narrower()(back_inserter(__dest), __b, __e); 224 _LIBCPP_HIDE_FROM_ABI static void __append_range(__path_string& __dest, _Iter __b, _Iter __e) { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | list | 1099 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1106 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i) 1115 …itializer_list<value_type>::const_iterator __i = __il.begin(), __e = __il.end(); __i != __e; ++__i) 1121 …itializer_list<value_type>::const_iterator __i = __il.begin(), __e = __il.end(); __i != __e; ++__i) 1191 iterator __e = end(); 1192 for (; __f != __l && __i != __e; ++__f, (void)++__i) 1194 if (__i == __e) 1195 __insert_with_sentinel(__e, std::move(__f), std::move(__l)); 1197 erase(__i, __e); 1203 iterator __e = end(); [all …]
|