Home
last modified time | relevance | path

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

12345678910>>...21

/netbsd-src/external/apache2/llvm/dist/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_hip_math.h135 int abs(int __x) {
136 int __sgn = __x >> (sizeof(int) * CHAR_BIT - 1);
137 return (__x ^ __sgn) - __sgn;
140 long labs(long __x) {
141 long __sgn = __x >> (sizeof(long) * CHAR_BIT - 1);
142 return (__x ^ __sgn) - __sgn;
145 long long llabs(long long __x) {
146 long long __sgn = __x >> (sizeof(long long) * CHAR_BIT - 1);
147 return (__x ^ __sgn) - __sgn;
152 float acosf(float __x) { return __ocml_acos_f32(__x); }
[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 …]
/netbsd-src/external/apache2/llvm/dist/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 …]
H A Dcmath43 __DEVICE__ float acosh(float __x) { return ::acoshf(__x); }
44 __DEVICE__ float asinh(float __x) { return ::asinhf(__x); }
45 __DEVICE__ float atanh(float __x) { return ::atanhf(__x); }
46 __DEVICE__ float cbrt(float __x) { return ::cbrtf(__x); }
47 __DEVICE__ float erf(float __x) { return ::erff(__x); }
48 __DEVICE__ float erfc(float __x) { return ::erfcf(__x); }
49 __DEVICE__ float exp2(float __x) { return ::exp2f(__x); }
50 __DEVICE__ float expm1(float __x) { return ::expm1f(__x); }
51 __DEVICE__ float fdim(float __x, float __y) { return ::fdimf(__x, __y); }
52 __DEVICE__ float hypot(float __x, float __y) { return ::hypotf(__x, __y); }
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/profile/impl/
H A Dprofiler.h208 #define __profcxx_hashtable_size_construct(__x...) \ argument
209 __gnu_profile::__trace_hashtable_size_construct(__x)
210 #define __profcxx_hashtable_size_resize(__x...) \ argument
211 __gnu_profile::__trace_hashtable_size_resize(__x)
212 #define __profcxx_hashtable_size_destruct(__x...) \ argument
213 __gnu_profile::__trace_hashtable_size_destruct(__x)
215 #define __profcxx_hashtable_size_construct(__x...) 0 argument
216 #define __profcxx_hashtable_size_resize(__x...) argument
217 #define __profcxx_hashtable_size_destruct(__x...) argument
223 #define __profcxx_vector_size_construct(__x...) \ argument
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/
H A Dtree.cc60 local_Rb_tree_increment(_Rb_tree_node_base* __x) throw () in local_Rb_tree_increment() argument
62 if (__x->_M_right != 0) in local_Rb_tree_increment()
64 __x = __x->_M_right; in local_Rb_tree_increment()
65 while (__x->_M_left != 0) in local_Rb_tree_increment()
66 __x = __x->_M_left; in local_Rb_tree_increment()
70 _Rb_tree_node_base* __y = __x->_M_parent; in local_Rb_tree_increment()
71 while (__x == __y->_M_right) in local_Rb_tree_increment()
73 __x = __y; in local_Rb_tree_increment()
76 if (__x->_M_right != __y) in local_Rb_tree_increment()
77 __x = __y; in local_Rb_tree_increment()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/
H A Dtree.cc60 local_Rb_tree_increment(_Rb_tree_node_base* __x) throw () in local_Rb_tree_increment() argument
62 if (__x->_M_right != 0) in local_Rb_tree_increment()
64 __x = __x->_M_right; in local_Rb_tree_increment()
65 while (__x->_M_left != 0) in local_Rb_tree_increment()
66 __x = __x->_M_left; in local_Rb_tree_increment()
70 _Rb_tree_node_base* __y = __x->_M_parent; in local_Rb_tree_increment()
71 while (__x == __y->_M_right) in local_Rb_tree_increment()
73 __x = __y; in local_Rb_tree_increment()
76 if (__x->_M_right != __y) in local_Rb_tree_increment()
77 __x = __y; in local_Rb_tree_increment()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/
H A Dsimd_scalar.h39 __promote_preserving_unsigned(const _Tp& __x) in decltype()
41 if constexpr (is_signed_v<decltype(+__x)> && is_unsigned_v<_Tp>) in decltype()
42 return static_cast<unsigned int>(__x); in decltype()
44 return __x; in decltype()
78 _S_masked(bool __x) in _S_masked()
79 { return __x; } in _S_masked()
115 _S_store(_Tp __x, void* __addr)
116 { __builtin_memcpy(__addr, &__x, sizeof(_Tp)); }
122 _S_store_bool_array(_BitMask<_Np, _Sanitized> __x, bool* __mem)
124 __make_dependent_t<decltype(__x), _CommonImplBuiltin>::_S_store_bool_array(
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_global/
H A Dcmath87 acos(float __x)
88 { return __builtin_acosf(__x); }
91 acos(long double __x)
92 { return __builtin_acosl(__x); }
99 acos(_Tp __x)
100 { return __builtin_acos(__x); }
106 asin(float __x)
107 { return __builtin_asinf(__x); }
110 asin(long double __x)
111 { return __builtin_asinl(__x); }
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_global/
H A Dcmath87 acos(float __x)
88 { return __builtin_acosf(__x); }
91 acos(long double __x)
92 { return __builtin_acosl(__x); }
99 acos(_Tp __x)
100 { return __builtin_acos(__x); }
106 asin(float __x)
107 { return __builtin_asinf(__x); }
110 asin(long double __x)
111 { return __builtin_asinl(__x); }
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/c_std/
H A Dcmath81 abs(double __x)
82 { return __builtin_fabs(__x); }
85 abs(float __x)
86 { return __builtin_fabsf(__x); }
89 abs(long double __x)
90 { return __builtin_fabsl(__x); }
95 abs(_Tp __x)
96 { return __builtin_fabs(__x); }
101 acos(float __x)
102 { return __builtin_acosf(__x); }
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_std/
H A Dcmath81 abs(double __x)
82 { return __builtin_fabs(__x); }
85 abs(float __x)
86 { return __builtin_fabsf(__x); }
89 abs(long double __x)
90 { return __builtin_fabsl(__x); }
95 abs(_Tp __x)
96 { return __builtin_fabs(__x); }
101 acos(float __x)
102 { return __builtin_acosf(__x); }
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
H A Dstd_abs.h61 abs(long long __x) { return __builtin_llabs (__x); } in _GLIBCXX_VISIBILITY()
71 abs(double __x) in _GLIBCXX_VISIBILITY()
72 { return __builtin_fabs(__x); } in _GLIBCXX_VISIBILITY()
75 abs(float __x) in _GLIBCXX_VISIBILITY()
76 { return __builtin_fabsf(__x); } in _GLIBCXX_VISIBILITY()
79 abs(long double __x) in _GLIBCXX_VISIBILITY()
80 { return __builtin_fabsl(__x); } in _GLIBCXX_VISIBILITY()
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dspecfun.h206 assoc_laguerref(unsigned int __n, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
207 { return __detail::__assoc_laguerre<float>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
216 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
217 { return __detail::__assoc_laguerre<long double>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
252 assoc_laguerre(unsigned int __n, unsigned int __m, _Tp __x) in _GLIBCXX_VISIBILITY()
255 return __detail::__assoc_laguerre<__type>(__n, __m, __x); in _GLIBCXX_VISIBILITY()
267 assoc_legendref(unsigned int __l, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
268 { return __detail::__assoc_legendre_p<float>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
276 assoc_legendrel(unsigned int __l, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
277 { return __detail::__assoc_legendre_p<long double>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dfs_fwd.h95 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
99 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
103 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
107 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
111 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
115 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
119 operator~(copy_options __x) noexcept in _GLIBCXX_VISIBILITY()
122 return static_cast<copy_options>(~static_cast<__utype>(__x)); in _GLIBCXX_VISIBILITY()
126 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
127 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_bvector.h84 _Bit_reference(_Bit_type * __x, _Bit_type __y) in _GLIBCXX_VISIBILITY()
85 : _M_p(__x), _M_mask(__y) { } in _GLIBCXX_VISIBILITY()
100 operator=(bool __x) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
102 if (__x) in _GLIBCXX_VISIBILITY()
111 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
112 { return *this = bool(__x); } in _GLIBCXX_VISIBILITY()
116 operator==(const _Bit_reference& __x) const in _GLIBCXX_VISIBILITY()
117 { return bool(*this) == bool(__x); } in _GLIBCXX_VISIBILITY()
121 operator<(const _Bit_reference& __x) const in _GLIBCXX_VISIBILITY()
122 { return !bool(*this) && bool(__x); } in _GLIBCXX_VISIBILITY()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
H A Dexp_integral.tcc83 __expint_E1_series(_Tp __x) in __expint_E1_series() argument
92 __term *= - __x / __i; in __expint_E1_series()
102 - __numeric_constants<_Tp>::__gamma_e() - std::log(__x); in __expint_E1_series()
120 __expint_E1_asymp(_Tp __x) in __expint_E1_asymp() argument
129 __term *= - __i / __x; in __expint_E1_asymp()
138 return std::exp(- __x) * (__esum + __osum) / __x; in __expint_E1_asymp()
157 __expint_En_series(unsigned int __n, _Tp __x) in __expint_En_series() argument
163 ? _Tp(1) / __nm1 : -std::log(__x) in __expint_En_series()
168 __fact *= -__x / _Tp(__i); in __expint_En_series()
177 __del = __fact * (__psi - std::log(__x)); in __expint_En_series()
[all …]
H A Dcmath495 acosh(float __x)
496 { return __builtin_acoshf(__x); }
499 acosh(long double __x)
500 { return __builtin_acoshl(__x); }
506 acosh(_Tp __x)
507 { return __builtin_acosh(__x); }
511 asinh(float __x)
512 { return __builtin_asinhf(__x); }
515 asinh(long double __x)
516 { return __builtin_asinhl(__x); }
[all …]
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
H A Dexp_integral.tcc83 __expint_E1_series(_Tp __x) in __expint_E1_series() argument
92 __term *= - __x / __i; in __expint_E1_series()
102 - __numeric_constants<_Tp>::__gamma_e() - std::log(__x); in __expint_E1_series()
120 __expint_E1_asymp(_Tp __x) in __expint_E1_asymp() argument
129 __term *= - __i / __x; in __expint_E1_asymp()
138 return std::exp(- __x) * (__esum + __osum) / __x; in __expint_E1_asymp()
157 __expint_En_series(unsigned int __n, _Tp __x) in __expint_En_series() argument
163 ? _Tp(1) / __nm1 : -std::log(__x) in __expint_En_series()
168 __fact *= -__x / _Tp(__i); in __expint_En_series()
177 __del = __fact * (__psi - std::log(__x)); in __expint_En_series()
[all …]
H A Dcmath495 acosh(float __x)
496 { return __builtin_acoshf(__x); }
499 acosh(long double __x)
500 { return __builtin_acoshl(__x); }
506 acosh(_Tp __x)
507 { return __builtin_acosh(__x); }
511 asinh(float __x)
512 { return __builtin_asinhf(__x); }
515 asinh(long double __x)
516 { return __builtin_asinhl(__x); }
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
H A Dspecfun.h206 assoc_laguerref(unsigned int __n, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
207 { return __detail::__assoc_laguerre<float>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
216 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
217 { return __detail::__assoc_laguerre<long double>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
252 assoc_laguerre(unsigned int __n, unsigned int __m, _Tp __x) in _GLIBCXX_VISIBILITY()
255 return __detail::__assoc_laguerre<__type>(__n, __m, __x); in _GLIBCXX_VISIBILITY()
267 assoc_legendref(unsigned int __l, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
268 { return __detail::__assoc_legendre_p<float>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
276 assoc_legendrel(unsigned int __l, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
277 { return __detail::__assoc_legendre_p<long double>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstd_abs.h61 abs(long long __x) { return __builtin_llabs (__x); } in _GLIBCXX_VISIBILITY()
71 abs(double __x) in _GLIBCXX_VISIBILITY()
72 { return __builtin_fabs(__x); } in _GLIBCXX_VISIBILITY()
75 abs(float __x) in _GLIBCXX_VISIBILITY()
76 { return __builtin_fabsf(__x); } in _GLIBCXX_VISIBILITY()
79 abs(long double __x) in _GLIBCXX_VISIBILITY()
80 { return __builtin_fabsl(__x); } in _GLIBCXX_VISIBILITY()
85 abs(__GLIBCXX_TYPE_INT_N_0 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
89 abs(__GLIBCXX_TYPE_INT_N_1 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
93 abs(__GLIBCXX_TYPE_INT_N_2 __x) { return __x >= 0 ? __x : -__x; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dfs_fwd.h90 operator&(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
94 static_cast<__utype>(__x) & static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
98 operator|(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
102 static_cast<__utype>(__x) | static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
106 operator^(copy_options __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
110 static_cast<__utype>(__x) ^ static_cast<__utype>(__y)); in _GLIBCXX_VISIBILITY()
114 operator~(copy_options __x) noexcept in _GLIBCXX_VISIBILITY()
117 return static_cast<copy_options>(~static_cast<__utype>(__x)); in _GLIBCXX_VISIBILITY()
121 operator&=(copy_options& __x, copy_options __y) noexcept in _GLIBCXX_VISIBILITY()
122 { return __x = __x & __y; } in _GLIBCXX_VISIBILITY()
[all …]
H A Dstl_bvector.h77 _Bit_reference(_Bit_type * __x, _Bit_type __y) in _GLIBCXX_VISIBILITY()
78 : _M_p(__x), _M_mask(__y) { } in _GLIBCXX_VISIBILITY()
90 operator=(bool __x) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
92 if (__x) in _GLIBCXX_VISIBILITY()
100 operator=(const _Bit_reference& __x) _GLIBCXX_NOEXCEPT in _GLIBCXX_VISIBILITY()
101 { return *this = bool(__x); } in _GLIBCXX_VISIBILITY()
104 operator==(const _Bit_reference& __x) const in _GLIBCXX_VISIBILITY()
105 { return bool(*this) == bool(__x); } in _GLIBCXX_VISIBILITY()
108 operator<(const _Bit_reference& __x) const in _GLIBCXX_VISIBILITY()
109 { return !bool(*this) && bool(__x); } in _GLIBCXX_VISIBILITY()
[all …]

12345678910>>...21