Home
last modified time | relevance | path

Searched refs:__x (Results 1 – 25 of 213) sorted by relevance

123456789

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A Dtgmath.h49 #define __tg_promote1(__x) (__typeof__(__tg_promote(__x))) argument
50 #define __tg_promote2(__x, __y) (__typeof__(__tg_promote(__x) + \ argument
52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
60 __tg_acos(float __x) {return acosf(__x);} in __tg_acos() argument
64 __tg_acos(double __x) {return acos(__x);} in __tg_acos() argument
68 __tg_acos(long double __x) {return acosl(__x);} in __tg_acos() argument
72 __tg_acos(float _Complex __x) {return cacosf(__x);} in __tg_acos() argument
76 __tg_acos(double _Complex __x) {return cacos(__x);} in __tg_acos() argument
80 __tg_acos(long double _Complex __x) {return cacosl(__x);} in __tg_acos() argument
83 #define acos(__x) __tg_acos(__tg_promote1((__x))(__x)) argument
[all …]
H A D__clang_cuda_cmath.h43 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs() argument
44 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs() argument
45 __DEVICE__ float acos(float __x) { return ::acosf(__x); } in acos() argument
46 __DEVICE__ float asin(float __x) { return ::asinf(__x); } in asin() argument
47 __DEVICE__ float atan(float __x) { return ::atanf(__x); } in atan() argument
48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2() argument
49 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); } in ceil() argument
50 __DEVICE__ float cos(float __x) { return ::cosf(__x); } in cos() argument
51 __DEVICE__ float cosh(float __x) { return ::coshf(__x); } in cosh() argument
52 __DEVICE__ float exp(float __x) { return ::expf(__x); } in exp() argument
[all …]
H A D__clang_hip_cmath.h40 __DEVICE__ __CONSTEXPR__ float fabs(float __x) { return ::fabsf(__x); } in fabs() argument
41 __DEVICE__ __CONSTEXPR__ float sin(float __x) { return ::sinf(__x); } in sin() argument
42 __DEVICE__ __CONSTEXPR__ float cos(float __x) { return ::cosf(__x); } in cos() argument
44 __DEVICE__ __CONSTEXPR__ double abs(double __x) { return ::fabs(__x); } in abs() argument
45 __DEVICE__ __CONSTEXPR__ float abs(float __x) { return ::fabsf(__x); } in abs() argument
48 __DEVICE__ __CONSTEXPR__ float fma(float __x, float __y, float __z) { in fma() argument
49 return ::fmaf(__x, __y, __z); in fma()
54 __DEVICE__ __CONSTEXPR__ int fpclassify(float __x) { in fpclassify() argument
56 FP_ZERO, __x); in fpclassify()
58 __DEVICE__ __CONSTEXPR__ int fpclassify(double __x) { in fpclassify() argument
[all …]
H A D__clang_cuda_texture_intrinsics.h302 __IMPL_S("__tex1D_v2", "__tex1D_rmnf_v2", (float __x), "tex.1d.v4", "f32",
303 "{%0, %1, %2, %3}, [%4, {%5}];", ("f"(__x)));
304 __IMPL_S("__tex1Dfetch_v2", "__tex1Dfetch_rmnf_v2", (int __x), "tex.1d.v4",
305 "s32", "{%0, %1, %2, %3}, [%4, {%5}];", ("r"(__x)));
310 (float __x, float __dPdx, float __dPdy), "tex.grad.1d.v4", "f32",
312 ("f"(__x), "f"(__dPdx), "f"(__dPdy)));
316 (float __x, int __layer), "tex.a1d.v4", "f32",
317 "{%0, %1, %2, %3}, [%4, {%5, %6}];", ("r"(__layer), "f"(__x)));
321 (float __x, int __layer, float __dPdx, float __dPdy),
324 ("r"(__layer), "f"(__x), "f"(__dPdx), "f"(__dPdy)));
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h97 _Tp __x = __rho * cos(__theta);
98 if (std::isnan(__x))
99 __x = 0;
103 return std::complex<_Tp>(__x, __y);
108 template <class _Tp> std::complex<_Tp> log(const std::complex<_Tp> &__x) { in log() argument
109 return std::complex<_Tp>(log(abs(__x)), arg(__x)); in log()
114 template <class _Tp> std::complex<_Tp> log10(const std::complex<_Tp> &__x) { in log10() argument
115 return log(__x) / log(_Tp(10)); in log10()
121 __DEVICE__ std::complex<_Tp> sqrt(const std::complex<_Tp> &__x) { in sqrt() argument
122 if (std::isinf(__x.imag())) in sqrt()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Drounding_functions.h29 …ODISCARD inline _LIBCPP_HIDE_FROM_ABI float ceil(float __x) _NOEXCEPT { return __builtin_ceilf(__x in ceil() argument
32 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double ceil(double __x) _NOEXCEPT { in ceil() argument
33 return __builtin_ceil(__x); in ceil()
36 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double ceil(long double __x) _NOEXCEPT { in ceil() argument
37 return __builtin_ceill(__x); in ceil()
41 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI double ceil(_A1 __x) _NOEXCEPT { in ceil() argument
42 return __builtin_ceil((double)__x); in ceil()
47 …ISCARD inline _LIBCPP_HIDE_FROM_ABI float floor(float __x) _NOEXCEPT { return __builtin_floorf(__x in floor() argument
50 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double floor(double __x) _NOEXCEPT { in floor() argument
51 return __builtin_floor(__x); in floor()
[all …]
H A Dexponential_functions.h29 inline _LIBCPP_HIDE_FROM_ABI float exp(float __x) _NOEXCEPT { return __builtin_expf(__x); } in exp() argument
32 _LIBCPP_HIDE_FROM_ABI double exp(double __x) _NOEXCEPT { in exp() argument
33 return __builtin_exp(__x); in exp()
36 inline _LIBCPP_HIDE_FROM_ABI long double exp(long double __x) _NOEXCEPT { return __builtin_expl(__x in exp() argument
39 inline _LIBCPP_HIDE_FROM_ABI double exp(_A1 __x) _NOEXCEPT { in exp() argument
40 return __builtin_exp((double)__x); in exp()
45 inline _LIBCPP_HIDE_FROM_ABI float frexp(float __x, int* __e) _NOEXCEPT { return __builtin_frexpf(_… 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
[all …]
H A Dinverse_trigonometric_functions.h29 inline _LIBCPP_HIDE_FROM_ABI float acos(float __x) _NOEXCEPT { return __builtin_acosf(__x); } in acos() argument
32 _LIBCPP_HIDE_FROM_ABI double acos(double __x) _NOEXCEPT { in acos() argument
33 return __builtin_acos(__x); in acos()
36 …ine _LIBCPP_HIDE_FROM_ABI long double acos(long double __x) _NOEXCEPT { return __builtin_acosl(__x in acos() argument
39 inline _LIBCPP_HIDE_FROM_ABI double acos(_A1 __x) _NOEXCEPT { in acos() argument
40 return __builtin_acos((double)__x); in acos()
45 inline _LIBCPP_HIDE_FROM_ABI float asin(float __x) _NOEXCEPT { return __builtin_asinf(__x); } in asin() argument
48 _LIBCPP_HIDE_FROM_ABI double asin(double __x) _NOEXCEPT { in asin() argument
49 return __builtin_asin(__x); in asin()
52 …ine _LIBCPP_HIDE_FROM_ABI long double asin(long double __x) _NOEXCEPT { return __builtin_asinl(__x in asin() argument
[all …]
H A Dtraits.h32 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI bool signbit(_A1 __x) _NOEXCEPT { in signbit() argument
33 return __builtin_signbit(__x); in signbit()
37 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI bool signbit(_A1 __x) _NOEXCEPT { in signbit() argument
38 return __x < 0; in signbit()
49 _LIBCPP_NODISCARD _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isfinite(_A1 __x) _NOEXC… in isfinite() argument
50 return __builtin_isfinite((typename __promote<_A1>::type)__x); in isfinite()
58 …ARD inline _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isfinite(float __x) _NOEXCEPT { in isfinite() argument
59 return __builtin_isfinite(__x); in isfinite()
62 …RD inline _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI bool isfinite(double __x) _NOEXCEPT { in isfinite() argument
63 return __builtin_isfinite(__x); in isfinite()
[all …]
H A Dspecial_functions.h29 _LIBCPP_HIDE_FROM_ABI _Real __hermite(unsigned __n, _Real __x) { in __hermite() argument
36 if (__math::isnan(__x)) in __hermite()
37 return __x; in __hermite()
44 _Real __H_n = 2 * __x; in __hermite()
46 _Real __H_n_next = 2 * (__x * __H_n - __i * __H_n_prev); in __hermite()
56 return (__n & 1) ? __math::copysign(__inf, __x) : __inf; in __hermite()
62 …_LIBCPP_HIDE_FROM_ABI double hermite(unsigned __n, double __x) { return std::__hermite(__n, __x); } in hermite() argument
64 inline _LIBCPP_HIDE_FROM_ABI float hermite(unsigned __n, float __x) { in hermite() argument
66 return static_cast<float>(std::hermite(__n, static_cast<double>(__x))); in hermite()
69 …DE_FROM_ABI long double hermite(unsigned __n, long double __x) { return std::__hermite(__n, __x); } in hermite() argument
[all …]
H A Droots.h26 inline _LIBCPP_HIDE_FROM_ABI float sqrt(float __x) _NOEXCEPT { return __builtin_sqrtf(__x); } in sqrt() argument
29 _LIBCPP_HIDE_FROM_ABI double sqrt(double __x) _NOEXCEPT { in sqrt() argument
30 return __builtin_sqrt(__x); in sqrt()
33 …ine _LIBCPP_HIDE_FROM_ABI long double sqrt(long double __x) _NOEXCEPT { return __builtin_sqrtl(__x in sqrt() argument
36 inline _LIBCPP_HIDE_FROM_ABI double sqrt(_A1 __x) _NOEXCEPT { in sqrt() argument
37 return __builtin_sqrt((double)__x); in sqrt()
42 …ODISCARD inline _LIBCPP_HIDE_FROM_ABI float cbrt(float __x) _NOEXCEPT { return __builtin_cbrtf(__x in cbrt() argument
45 _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI double cbrt(double __x) _NOEXCEPT { in cbrt() argument
46 return __builtin_cbrt(__x); in cbrt()
49 _LIBCPP_NODISCARD inline _LIBCPP_HIDE_FROM_ABI long double cbrt(long double __x) _NOEXCEPT { in cbrt() argument
[all …]
H A Dhypot.h35 inline _LIBCPP_HIDE_FROM_ABI float hypot(float __x, float __y) _NOEXCEPT { return __builtin_hypotf( in hypot() argument
38 _LIBCPP_HIDE_FROM_ABI double hypot(double __x, double __y) _NOEXCEPT { in hypot() argument
39 return __builtin_hypot(__x, __y); in hypot()
42 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y) _NOEXCEPT { in hypot() argument
43 return __builtin_hypotl(__x, __y); in hypot()
47 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type hypot(_A1 __x, _A2 __y) _NOEXCEPT { in hypot() argument
50 return __math::hypot((__result_type)__x, (__result_type)__y); in hypot()
59 _LIBCPP_HIDE_FROM_ABI _Real __hypot(_Real __x, _Real __y, _Real __z) { in __hypot() argument
66 …const _Real __max_abs = std::max(__math::fabs(__x), std::max(__math::fabs(__y), __math::fabs(__z))… in __hypot()
75 __x *= __scale; in __hypot()
[all …]
H A Dremainder.h29 …ne _LIBCPP_HIDE_FROM_ABI float remainder(float __x, float __y) _NOEXCEPT { return __builtin_remain… in remainder() argument
32 _LIBCPP_HIDE_FROM_ABI double remainder(double __x, double __y) _NOEXCEPT { in remainder() argument
33 return __builtin_remainder(__x, __y); in remainder()
36 inline _LIBCPP_HIDE_FROM_ABI long double remainder(long double __x, long double __y) _NOEXCEPT { in remainder() argument
37 return __builtin_remainderl(__x, __y); in remainder()
41 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type remainder(_A1 __x, _A2 __y) _NOEXCE… in remainder() argument
44 return __math::remainder((__result_type)__x, (__result_type)__y); in remainder()
49 inline _LIBCPP_HIDE_FROM_ABI float remquo(float __x, float __y, int* __z) _NOEXCEPT { in remquo() argument
50 return __builtin_remquof(__x, __y, __z); in remquo()
54 _LIBCPP_HIDE_FROM_ABI double remquo(double __x, double __y, int* __z) _NOEXCEPT { in remquo() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dchars_format.h26 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator~(chars_format __x) {
27 return chars_format(~std::__to_underlying(__x));
30 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator&(chars_format __x, chars_format __y) {
31 return chars_format(std::__to_underlying(__x) & std::__to_underlying(__y));
34 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator|(chars_format __x, chars_format __y) {
35 return chars_format(std::__to_underlying(__x) | std::__to_underlying(__y));
38 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format operator^(chars_format __x, chars_format __y) {
39 return chars_format(std::__to_underlying(__x) ^ std::__to_underlying(__y));
42 inline _LIBCPP_HIDE_FROM_ABI constexpr chars_format& operator&=(chars_format& __x, chars_format __y…
43 __x = __x & __y;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__numeric/
H A Dsaturation_arithmetic.h31 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __add_sat(_Tp __x, _Tp __y) noexcept { in __add_sat() argument
32 if (_Tp __sum; !__builtin_add_overflow(__x, __y, &__sum)) in __add_sat()
39 if (__x > 0) in __add_sat()
49 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __sub_sat(_Tp __x, _Tp __y) noexcept { in __sub_sat() argument
50 if (_Tp __sub; !__builtin_sub_overflow(__x, __y, &__sub)) in __sub_sat()
58 if (__x >= 0) in __sub_sat()
68 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __mul_sat(_Tp __x, _Tp __y) noexcept { in __mul_sat() argument
69 if (_Tp __mul; !__builtin_mul_overflow(__x, __y, &__mul)) in __mul_sat()
76 if ((__x > 0 && __y > 0) || (__x < 0 && __y < 0)) in __mul_sat()
84 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __div_sat(_Tp __x, _Tp __y) noexcept { in __div_sat() argument
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dleap_second.h55 _LIBCPP_HIDE_FROM_ABI inline constexpr bool operator==(const leap_second& __x, const leap_second& _…
56 return __x.date() == __y.date();
59 _LIBCPP_HIDE_FROM_ABI inline constexpr strong_ordering operator<=>(const leap_second& __x, const le…
60 return __x.date() <=> __y.date();
64 _LIBCPP_HIDE_FROM_ABI constexpr bool operator==(const leap_second& __x, const sys_time<_Duration>& …
65 return __x.date() == __y;
69 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<(const leap_second& __x, const sys_time<_Duration>& _…
70 return __x.date() < __y;
74 _LIBCPP_HIDE_FROM_ABI constexpr bool operator<(const sys_time<_Duration>& __x, const leap_second& _…
75 return __x < __y.date();
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__iterator/
H A Dwrap_iter.h96 …_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 explicit __wrap_iter(iterator_type __x) _NOEXCEPT : __i_(__x) {} in __wrap_iter() argument
114 operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
115 return __x.base() == __y.base();
120 operator==(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
121 return __x.base() == __y.base();
126 operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
127 return __x.base() < __y.base();
132 operator<(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter2>& __y) _NOEXCEPT {
133 return __x.base() < __y.base();
139 operator!=(const __wrap_iter<_Iter1>& __x, const __wrap_iter<_Iter1>& __y) _NOEXCEPT {
[all …]
H A Dnext.h29 next(_InputIter __x, typename iterator_traits<_InputIter>::difference_type __n = 1) {
35 std::advance(__x, __n);
36 return __x;
48 _LIBCPP_HIDE_FROM_ABI constexpr _Ip operator()(_Ip __x) const { in operator()
49 ++__x; in operator()
50 return __x; in operator()
54 _LIBCPP_HIDE_FROM_ABI constexpr _Ip operator()(_Ip __x, iter_difference_t<_Ip> __n) const {
55 ranges::advance(__x, __n); in operator()
56 return __x; in operator()
60 _LIBCPP_HIDE_FROM_ABI constexpr _Ip operator()(_Ip __x, _S
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__thread/
H A Did.h44 …__lt_impl(__thread_id __x, __thread_id __y) _NOEXCEPT { // id==0 is always less than any other thr…
45 if (__x.__id_ == 0)
49 return __libcpp_thread_id_less(__x.__id_, __y.__id_);
57 friend _LIBCPP_HIDE_FROM_ABI bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT;
59 friend _LIBCPP_HIDE_FROM_ABI bool operator<(__thread_id __x, __thread_id __y) _NOEXCEPT;
61 …friend _LIBCPP_HIDE_FROM_ABI strong_ordering operator<=>(__thread_id __x, __thread_id __y) noexcep…
78 inline _LIBCPP_HIDE_FROM_ABI bool operator==(__thread_id __x, __thread_id __y) _NOEXCEPT {
80 if (__x.__id_ == 0)
84 return __libcpp_thread_id_equal(__x.__id_, __y.__id_);
89 …ne _LIBCPP_HIDE_FROM_ABI bool operator!=(__thread_id __x, __thread_id __y) _NOEXCEPT { return !(__…
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dlinear_congruential_engine.h75 const __calc_type __x = static_cast<__calc_type>(__xp);
76 return static_cast<result_type>((__a * __x + __c) % __m);
84 _LIBCPP_HIDE_FROM_ABI static result_type next(result_type __x) {
88 const result_type __t0 = __a * (__x % __q);
89 const result_type __t1 = __r * (__x / __q);
90 __x = __t0 + (__t0 < __t1) * __m - __t1;
91 __x += __c - (__x >= __m - __c) * __m;
92 return __x;
99 _LIBCPP_HIDE_FROM_ABI static result_type next(result_type __x) {
103 const result_type __t0 = __a * (__x % __q);
[all …]
H A Dsubtract_with_carry_engine.h35 _LIBCPP_HIDE_FROM_ABI bool operator==(const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x,
39 _LIBCPP_HIDE_FROM_ABI bool operator!=(const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x,
44 operator<<(basic_ostream<_CharT, _Traits>& __os, const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x);
48 operator>>(basic_istream<_CharT, _Traits>& __is, subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x);
108 friend bool operator==(const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x,
112 friend bool operator!=(const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x,
117 operator<<(basic_ostream<_CharT, _Traits>& __os, const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x);
121 operator>>(basic_istream<_CharT, _Traits>& __is, subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x);
201 _LIBCPP_HIDE_FROM_ABI bool operator==(const subtract_with_carry_engine<_UInt, _Wp, _Sp, _Rp>& __x, in seed()
203 if (__x in seed()
[all...]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcomplex295 operator/(const complex<_Tp>& __x, const complex<_Tp>& __y);
299 operator/(const complex<_Tp>& __x, const complex<_Tp>& __y);
732 operator+(const complex<_Tp>& __x, const complex<_Tp>& __y) {
733 complex<_Tp> __t(__x);
740 operator+(const complex<_Tp>& __x, const _Tp& __y) {
741 complex<_Tp> __t(__x);
748 operator+(const _Tp& __x, const complex<_Tp>& __y) {
750 __t += __x;
756 operator-(const complex<_Tp>& __x, const complex<_Tp>& __y) {
757 complex<_Tp> __t(__x);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__system_error/
H A Derror_code.h92 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_code& __x, const error_code& __y) _NOEXCEPT { in make_error_code()
93 return __x.category() == __y.category() && __x.value() == __y.value();
96 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_code& __x, const error_condition& __y) _NOEXCEPT {
97 return __x.category().equivalent(__x.value(), __y) || __y.category().equivalent(__x, __y.value());
101 inline _LIBCPP_HIDE_FROM_ABI bool operator==(const error_condition& __x, const error_code& __y) _NOEXCEPT {
102 return __y == __x;
108 inline _LIBCPP_HIDE_FROM_ABI bool operator!=(const error_code& __x, cons
[all...]
/freebsd/contrib/llvm-project/libcxx/include/__bit/
H A Dblsr.h20 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR unsigned __libcpp_blsr(unsigned __x) _NOEXCEPT { in __libcpp_blsr() argument
21 return __x ^ (__x & -__x); in __libcpp_blsr()
24 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR unsigned long __libcpp_blsr(unsigned long __x) _NOEXCEPT { in __libcpp_blsr() argument
25 return __x ^ (__x & -__x); in __libcpp_blsr()
28 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR unsigned long long __libcpp_blsr(unsigned long long __x) _NOEXCEPT { in __libcpp_blsr() argument
29 return __x in __libcpp_blsr()
[all...]
/freebsd/contrib/llvm-project/libcxx/src/include/ryu/
H A Dd2s_intrinsics.h166 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __div5(const uint64_t __x) { in __div5() argument
167 return __umulh(__x, 0xCCCCCCCCCCCCCCCDu) >> 2; in __div5()
170 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __div10(const uint64_t __x) { in __div10() argument
171 return __umulh(__x, 0xCCCCCCCCCCCCCCCDu) >> 3; in __div10()
174 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __div100(const uint64_t __x) { in __div100() argument
175 return __umulh(__x >> 2, 0x28F5C28F5C28F5C3u) >> 2; in __div100()
178 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __div1e8(const uint64_t __x) { in __div1e8() argument
179 return __umulh(__x, 0xABCC77118461CEFDu) >> 26; in __div1e8()
182 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint64_t __div1e9(const uint64_t __x) { in __div1e9() argument
183 return __umulh(__x >> in __div1e9()
186 __mod1e9(const uint64_t __x) __mod1e9() argument
201 __div5(const uint64_t __x) __div5() argument
205 __div10(const uint64_t __x) __div10() argument
209 __div100(const uint64_t __x) __div100() argument
213 __div1e8(const uint64_t __x) __div1e8() argument
217 __div1e9(const uint64_t __x) __div1e9() argument
221 __mod1e9(const uint64_t __x) __mod1e9() argument
[all...]

123456789