Home
last modified time | relevance | path

Searched refs:__e (Results 1 – 25 of 53) sorted by relevance

123

/src/contrib/llvm-project/libcxx/src/include/ryu/
H A Dcommon.h68 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline int32_t __pow5bits(const int32_t __e) { in __pow5bits() argument
72 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __pow5bits()
73 _LIBCPP_ASSERT_INTERNAL(__e <= 3528, ""); in __pow5bits()
74 return static_cast<int32_t>(((static_cast<uint32_t>(__e) * 1217359) >> 19) + 1); in __pow5bits()
78 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow2(const int32_t __e) { in __log10Pow2() argument
80 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __log10Pow2()
81 _LIBCPP_ASSERT_INTERNAL(__e <= 1650, ""); in __log10Pow2()
82 return (static_cast<uint32_t>(__e) * 78913) >> 18; in __log10Pow2()
86 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow5(const int32_t __e) { in __log10Pow5() argument
88 _LIBCPP_ASSERT_INTERNAL(__e >= 0, ""); in __log10Pow5()
[all …]
/src/contrib/llvm-project/libcxx/include/__math/
H A Dexponential_functions.h45 …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 …]
/src/contrib/llvm-project/libcxx/include/__algorithm/
H A Dranges_find_if_not.h45 …auto __pred2 = [&](auto&& __e) -> bool { return !std::invoke(__pred, std::forward<decltype(__e)>(_…
52 …auto __pred2 = [&](auto&& __e) -> bool { return !std::invoke(__pred, std::forward<decltype(__e)>(_…
H A Dranges_minmax.h94 for (auto __e : __r) { local
95 if (__e < __result.min)
96 __result.min = __e;
97 if (__result.max < __e)
98 __result.max = __e;
/src/contrib/llvm-project/libcxx/include/__atomic/
H A Datomic_base.h70 compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_weak()
72 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak()
74 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __s, memory_order… in compare_exchange_weak()
76 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __s… in compare_exchange_weak()
79 compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_order __f) volatile _NOEXCEPT in compare_exchange_strong()
81 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong()
83 …_LIBCPP_HIDE_FROM_ABI bool compare_exchange_strong(_Tp& __e, _Tp __d, memory_order __s, memory_ord… in compare_exchange_strong()
85 …return std::__cxx_atomic_compare_exchange_strong(std::addressof(__a_), std::addressof(__e), __d, _… in compare_exchange_strong()
88 …compare_exchange_weak(_Tp& __e, _Tp __d, memory_order __m = memory_order_seq_cst) volatile _NOEXCE…
89 …return std::__cxx_atomic_compare_exchange_weak(std::addressof(__a_), std::addressof(__e), __d, __m…
[all …]
H A Datomic.h364 …volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type…
365 return __o->compare_exchange_weak(*__e, __d);
370 …atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type __d) _NO…
371 return __o->compare_exchange_weak(*__e, __d);
378 …volatile atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type…
379 return __o->compare_exchange_strong(*__e, __d);
384 …atomic<_Tp>* __o, typename atomic<_Tp>::value_type* __e, typename atomic<_Tp>::value_type __d) _NO…
385 return __o->compare_exchange_strong(*__e, __d);
393 typename atomic<_Tp>::value_type* __e,
397 return __o->compare_exchange_weak(*__e, __d, __s, __f);
[all …]
/src/contrib/llvm-project/libcxx/include/
H A Dlocale260 // 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 Dlist1027 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i)
1033 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i)
1041 …itializer_list<value_type>::const_iterator __i = __il.begin(), __e = __il.end(); __i != __e; ++__i)
1047 …itializer_list<value_type>::const_iterator __i = __il.begin(), __e = __il.end(); __i != __e; ++__i)
1113 iterator __e = end();
1114 for (; __f != __l && __i != __e; ++__f, (void)++__i)
1116 if (__i == __e)
1117 __insert_with_sentinel(__e, std::move(__f), std::move(__l));
1119 erase(__i, __e);
1125 iterator __e = end();
[all …]
H A Dforward_list1025 iterator __e = end();
1026 for (; __j != __e && __f != __l; ++__i, (void)++__j, ++__f)
1028 if (__j == __e)
1031 erase_after(__i, __e);
1038 iterator __e = end();
1039 for (; __j != __e && __n > 0; --__n, ++__i, ++__j)
1041 if (__j == __e)
1044 erase_after(__i, __e);
1201 __node_pointer __e = __l.__get_unsafe_node_pointer();
1206 if (__n != __e) {
[all …]
H A Ddeque526 explicit _LIBCPP_HIDE_FROM_ABI __deque_block_range(pointer __b, pointer __e) _NOEXCEPT
528 __end_(__e) {}
537 …P_HIDE_FROM_ABI __deque_range(iterator __pos, iterator __e) _NOEXCEPT : __pos_(__pos), __end_(__e)…
600 typename __map::iterator __e = __map_.end();
601 for (; __i != __e; ++__i)
637 for (auto&& __e : __range) {
638 emplace_back(std::forward<decltype(__e)>(__e));
840 for (__map_const_iterator __i = __map_.begin(), __e = __map_.end(); __i != __e; ++__i)
1398 iterator __e = end();
1399 for (; __f != __l && __i != __e; ++__f, (void)++__i)
[all …]
H A Dvalarray628 _LIBCPP_HIDE_FROM_ABI __slice_expr(const slice& __sl, const _RmExpr& __e)
629 : __expr_(__e), __start_(__sl.start()), __size_(__sl.size()), __stride_(__sl.stride()) {}
664 …_LIBCPP_HIDE_FROM_ABI __shift_expr(int __n, const _RmExpr& __e) : __expr_(__e), __size_(__e.size()…
698 …_LIBCPP_HIDE_FROM_ABI __cshift_expr(int __n, const _RmExpr& __e) : __expr_(__e), __size_(__e.size(…
1335 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
1344 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
1353 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
1362 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
1371 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
1380 for (_Ip __i = __1d_.__begin_, __e = __1d_.__end_; __i != __e; ++__i, ++__j)
[all …]
/src/contrib/llvm-project/libcxx/include/__exception/
H A Dexception_ptr.h94 _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()
H A Dnested_exception.h88 inline _LIBCPP_HIDE_FROM_ABI void rethrow_if_nested(const _Ep& __e) {
89 const nested_exception* __nep = dynamic_cast<const nested_exception*>(std::addressof(__e));
/src/contrib/llvm-project/libcxx/include/__system_error/
H A Derror_condition.h62 _LIBCPP_HIDE_FROM_ABI error_condition(_Ep __e) _NOEXCEPT {
64 *this = make_error_condition(__e);
73 _LIBCPP_HIDE_FROM_ABI error_condition& operator=(_Ep __e) _NOEXCEPT {
75 *this = make_error_condition(__e);
92 inline _LIBCPP_HIDE_FROM_ABI error_condition make_error_condition(errc __e) _NOEXCEPT {
93 return error_condition(static_cast<int>(__e), generic_category());
H A Derror_code.h53 _LIBCPP_HIDE_FROM_ABI error_code(_Ep __e) _NOEXCEPT { in error_code() argument
55 *this = make_error_code(__e); in error_code()
64 _LIBCPP_HIDE_FROM_ABI error_code& operator=(_Ep __e) _NOEXCEPT {
66 *this = make_error_code(__e);
88 inline _LIBCPP_HIDE_FROM_ABI error_code make_error_code(errc __e) _NOEXCEPT { in make_error_code() argument
89 return error_code(static_cast<int>(__e), generic_category()); in make_error_code()
/src/contrib/llvm-project/libcxx/include/__random/
H A Ddiscard_block_engine.h62 _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
158 _Eng __e; variable
160 __is >> __e >> __n;
162 __x.__e_ = __e;
H A Dindependent_bits_engine.h90 _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 Dshuffle_order_engine.h86 _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…
212 _Eng __e;
214 __is >> __e;
218 __x.__e_ = __e;
H A Dpoisson_distribution.h161 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()
H A Duniform_int_distribution.h64 _LIBCPP_HIDE_FROM_ABI __independent_bits_engine(_Engine& __e, size_t __w);
75 __independent_bits_engine<_Engine, _UIntType>::__independent_bits_engine(_Engine& __e, size_t __w) in __independent_bits_engine() argument
76 : __e_(__e), __w_(__w) { in __independent_bits_engine()
224 _Eng __e(__g, __w); in operator()
227 __u = __e(); in operator()
H A Dgamma_distribution.h138 const result_type __e = -std::log((1 - __u) / __a); in operator() local
139 __x = std::pow(1 - __a + __a * __e, 1 / __a); in operator()
140 if (__x <= __e + __es) in operator()
/src/contrib/llvm-project/libcxx/include/__filesystem/
H A Dpath.h81 _LIBCPP_HIDE_FROM_ABI bool __is_separator(_ECharT __e) {
83 return __e == _ECharT('/') || __e == _ECharT('\\');
85 return __e == _ECharT('/');
142 _Iter __e = __b;
143 for (; *__e != __sentinel; ++__e)
145 return __e;
212 …ROM_ABI static void __append_range(__path_string& __dest, _ECharT const* __b, _ECharT const* __e) {
215 _Narrower()(back_inserter(__utf8), __b, __e);
218 _Narrower()(back_inserter(__dest), __b, __e);
223 _LIBCPP_HIDE_FROM_ABI static void __append_range(__path_string& __dest, _Iter __b, _Iter __e) {
[all …]
/src/contrib/llvm-project/libcxx/include/__expected/
H A Dbad_expected_access.h56 _LIBCPP_HIDE_FROM_ABI explicit bad_expected_access(_Err __e) : __unex_(std::move(__e)) {} in bad_expected_access() argument
/src/contrib/llvm-project/libcxx/src/support/runtime/
H A Dexception_pointer_cxxabi.ipp31 exception_ptr exception_ptr::__from_native_exception_pointer(void* __e) noexcept {
33 ptr.__ptr_ = __e;
H A Dexception_pointer_glibcxx.ipp49 exception_ptr exception_ptr::__from_native_exception_pointer(void* __e) noexcept {
51 new (reinterpret_cast<void*>(&ptr)) __exception_ptr::exception_ptr(__e);

123