Home
last modified time | relevance | path

Searched defs:__x (Results 1 – 25 of 88) sorted by relevance

1234

/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/
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()
64 __tg_acos(double __x) {return acos(__x);} in __tg_acos()
68 __tg_acos(long double __x) {return acosl(__x);} in __tg_acos()
72 __tg_acos(float _Complex __x) {return cacosf(__x);} in __tg_acos()
76 __tg_acos(double _Complex __x) {return cacos(__x);} in __tg_acos()
80 __tg_acos(long double _Complex __x) {return cacosl(__x);} in __tg_acos()
83 #define acos(__x) __tg_acos(__tg_promote1((__x))(__x)) argument
[all …]
D__clang_cuda_cmath.h43 __DEVICE__ float abs(float __x) { return ::fabsf(__x); } in abs()
44 __DEVICE__ double abs(double __x) { return ::fabs(__x); } in abs()
45 __DEVICE__ float acos(float __x) { return ::acosf(__x); } in acos()
46 __DEVICE__ float asin(float __x) { return ::asinf(__x); } in asin()
47 __DEVICE__ float atan(float __x) { return ::atanf(__x); } in atan()
48 __DEVICE__ float atan2(float __x, float __y) { return ::atan2f(__x, __y); } in atan2()
49 __DEVICE__ float ceil(float __x) { return ::ceilf(__x); } in ceil()
50 __DEVICE__ float cos(float __x) { return ::cosf(__x); } in cos()
51 __DEVICE__ float cosh(float __x) { return ::coshf(__x); } in cosh()
52 __DEVICE__ float exp(float __x) { return ::expf(__x); } in exp()
[all …]
D__clang_hip_cmath.h40 __DEVICE__ __CONSTEXPR__ float fabs(float __x) { return ::fabsf(__x); } in fabs()
41 __DEVICE__ __CONSTEXPR__ float sin(float __x) { return ::sinf(__x); } in sin()
42 __DEVICE__ __CONSTEXPR__ float cos(float __x) { return ::cosf(__x); } in cos()
44 __DEVICE__ __CONSTEXPR__ double abs(double __x) { return ::fabs(__x); } in abs()
45 __DEVICE__ __CONSTEXPR__ float abs(float __x) { return ::fabsf(__x); } in abs()
48 __DEVICE__ __CONSTEXPR__ float fma(float __x, float __y, float __z) { in fma()
54 __DEVICE__ __CONSTEXPR__ int fpclassify(float __x) { in fpclassify()
58 __DEVICE__ __CONSTEXPR__ int fpclassify(double __x) { in fpclassify()
86 __DEVICE__ __CONSTEXPR__ int isinf(float __x) { return ::__isinff(__x); } in isinf()
87 __DEVICE__ __CONSTEXPR__ int isinf(double __x) { return ::__isinf(__x); } in isinf()
[all …]
D__clang_hip_libdevice_declares.h142 __llvm_amdgcn_cos_f32(float __x) { in __llvm_amdgcn_cos_f32()
146 __llvm_amdgcn_rcp_f32(float __x) { in __llvm_amdgcn_rcp_f32()
150 __llvm_amdgcn_rsq_f32(float __x) { in __llvm_amdgcn_rsq_f32()
154 __llvm_amdgcn_sin_f32(float __x) { in __llvm_amdgcn_sin_f32()
281 __llvm_amdgcn_rcp_f64(double __x) { in __llvm_amdgcn_rcp_f64()
285 __llvm_amdgcn_rsq_f64(double __x) { in __llvm_amdgcn_rsq_f64()
331 __llvm_amdgcn_rcp_2f16(__2f16 __x) // Not currently exposed by ROCDL. in __llvm_amdgcn_rcp_2f16()
Dadxintrin.h22 _addcarryx_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _addcarryx_u32()
30 _addcarryx_u64(unsigned char __cf, unsigned long long __x, in _addcarryx_u64()
39 _addcarry_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _addcarry_u32()
47 _addcarry_u64(unsigned char __cf, unsigned long long __x, in _addcarry_u64()
55 _subborrow_u32(unsigned char __cf, unsigned int __x, unsigned int __y, in _subborrow_u32()
63 _subborrow_u64(unsigned char __cf, unsigned long long __x, in _subborrow_u64()
/freebsd-12-stable/contrib/libstdc++/include/c_std/
Dstd_cmath.h89 abs(double __x) in abs()
93 abs(float __x) in abs()
97 abs(long double __x) in abs()
103 acos(float __x) in acos()
107 acos(long double __x) in acos()
113 acos(_Tp __x) in acos()
119 asin(float __x) in asin()
123 asin(long double __x) in asin()
129 asin(_Tp __x) in asin()
135 atan(float __x) in atan()
[all …]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
Dcomplex_cmath.h108 template <class _Tp> std::complex<_Tp> log(const std::complex<_Tp> &__x) { in log()
114 template <class _Tp> std::complex<_Tp> log10(const std::complex<_Tp> &__x) { in log10()
121 __DEVICE__ std::complex<_Tp> sqrt(const std::complex<_Tp> &__x) { in sqrt()
138 __DEVICE__ std::complex<_Tp> exp(const std::complex<_Tp> &__x) { in exp()
158 std::complex<_Tp> pow(const std::complex<_Tp> &__x, in pow()
165 template <class _Tp> std::complex<_Tp> __sqr(const std::complex<_Tp> &__x) { in __sqr()
174 __DEVICE__ std::complex<_Tp> asinh(const std::complex<_Tp> &__x) { in asinh()
202 __DEVICE__ std::complex<_Tp> acosh(const std::complex<_Tp> &__x) { in acosh()
235 __DEVICE__ std::complex<_Tp> atanh(const std::complex<_Tp> &__x) { in atanh()
265 __DEVICE__ std::complex<_Tp> sinh(const std::complex<_Tp> &__x) { in sinh()
[all …]
/freebsd-12-stable/contrib/libstdc++/include/c/
Dstd_cmath.h85 abs(double __x) in abs()
89 abs(float __x) in abs()
93 abs(long double __x) in abs()
98 modf(float __x, float* __iptr) { return modff(__x, __iptr); } in modf()
101 modf(float __x, float* __iptr) in modf()
112 modf(long double __x, long double* __iptr) { return modfl(__x, __iptr); } in modf()
115 modf(long double __x, long double* __iptr) in modf()
/freebsd-12-stable/contrib/libstdc++/include/debug/
Dmultiset.h89 multiset(const multiset<_Key,_Compare,_Allocator>& __x) in multiset()
92 multiset(const _Base& __x) : _Base(__x), _Safe_base() { } in multiset()
146 insert(const value_type& __x) in insert()
150 insert(iterator __position, const value_type& __x) in insert()
173 erase(const key_type& __x) in erase()
198 swap(multiset<_Key,_Compare,_Allocator>& __x) in swap()
214 find(const key_type& __x) in find()
220 find(const key_type& __x) const in find()
226 lower_bound(const key_type& __x) in lower_bound()
232 lower_bound(const key_type& __x) const in lower_bound()
[all …]
Dset.h89 set(const set<_Key,_Compare,_Allocator>& __x) in set()
92 set(const _Base& __x) : _Base(__x), _Safe_base() { } in set()
146 insert(const value_type& __x) in insert()
155 insert(iterator __position, const value_type& __x) in insert()
178 erase(const key_type& __x) in erase()
203 swap(set<_Key,_Compare,_Allocator>& __x) in swap()
219 find(const key_type& __x) in find()
225 find(const key_type& __x) const in find()
231 lower_bound(const key_type& __x) in lower_bound()
237 lower_bound(const key_type& __x) const in lower_bound()
[all …]
Dmultimap.h89 multimap(const multimap<_Key,_Tp,_Compare,_Allocator>& __x) in multimap()
92 multimap(const _Base& __x) : _Base(__x), _Safe_base() { } in multimap()
146 insert(const value_type& __x) in insert()
150 insert(iterator __position, const value_type& __x) in insert()
173 erase(const key_type& __x) in erase()
198 swap(multimap<_Key,_Tp,_Compare,_Allocator>& __x) in swap()
214 find(const key_type& __x) in find()
218 find(const key_type& __x) const in find()
224 lower_bound(const key_type& __x) in lower_bound()
228 lower_bound(const key_type& __x) const in lower_bound()
[all …]
Dmap.h89 map(const map<_Key,_Tp,_Compare,_Allocator>& __x) in map()
92 map(const _Base& __x) : _Base(__x), _Safe_base() { } in map()
155 insert(const value_type& __x) in insert()
164 insert(iterator __position, const value_type& __x) in insert()
187 erase(const key_type& __x) in erase()
211 swap(map<_Key,_Tp,_Compare,_Allocator>& __x) in swap()
227 find(const key_type& __x) in find()
231 find(const key_type& __x) const in find()
237 lower_bound(const key_type& __x) in lower_bound()
241 lower_bound(const key_type& __x) const in lower_bound()
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__memory/
Daddressof.h30 addressof(_Tp& __x) _NOEXCEPT in addressof()
56 addressof(__strong _Tp& __x) _NOEXCEPT in addressof()
65 addressof(__weak _Tp& __x) _NOEXCEPT in addressof()
74 addressof(__autoreleasing _Tp& __x) _NOEXCEPT in addressof()
82 addressof(__unsafe_unretained _Tp& __x) _NOEXCEPT in addressof()
/freebsd-12-stable/contrib/libstdc++/src/
Dtree.cc86 _Rb_tree_increment(const _Rb_tree_node_base* __x) in _Rb_tree_increment()
92 _Rb_tree_decrement(_Rb_tree_node_base* __x) in _Rb_tree_decrement()
118 _Rb_tree_decrement(const _Rb_tree_node_base* __x) in _Rb_tree_decrement()
124 _Rb_tree_rotate_left(_Rb_tree_node_base* const __x, in _Rb_tree_rotate_left()
145 _Rb_tree_rotate_right(_Rb_tree_node_base* const __x, in _Rb_tree_rotate_right()
167 _Rb_tree_node_base* __x, in _Rb_tree_insert_and_rebalance()
264 _Rb_tree_node_base* __x = 0; in _Rb_tree_rebalance_for_erase() local
/freebsd-12-stable/contrib/libstdc++/include/std/
Dstd_iomanip.h65 _Resetiosflags __x; in resetiosflags() local
99 _Setiosflags __x; in setiosflags() local
134 _Setbase __x; in setbase() local
176 _Setfill<_CharT> __x; in setfill() local
210 _Setprecision __x; in setprecision() local
244 _Setw __x; in setw() local
/freebsd-12-stable/contrib/libstdc++/include/bits/
Dstl_uninitialized.h138 const _Tp& __x, __true_type) in __uninitialized_fill_aux()
144 const _Tp& __x, __false_type) in __uninitialized_fill_aux()
171 const _Tp& __x) in uninitialized_fill()
183 const _Tp& __x, __true_type) in __uninitialized_fill_n_aux()
189 const _Tp& __x, __false_type) in __uninitialized_fill_n_aux()
215 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) in uninitialized_fill_n()
259 const _Tp& __x, _Allocator __alloc) in __uninitialized_fill_a()
277 const _Tp& __x, allocator<_Tp2>) in __uninitialized_fill_a()
284 const _Tp& __x, in __uninitialized_fill_n_a()
304 const _Tp& __x, in __uninitialized_fill_n_a()
[all …]
Dstl_iterator.h397 back_insert_iterator(_Container& __x) : container(&__x) { } in back_insert_iterator()
446 back_inserter(_Container& __x) in back_inserter()
471 explicit front_insert_iterator(_Container& __x) : container(&__x) { } in front_insert_iterator()
520 front_inserter(_Container& __x) in front_inserter()
553 insert_iterator(_Container& __x, typename _Container::iterator __i) in insert_iterator()
616 inserter(_Container& __x, _Iterator __i) in inserter()
Dstl_list.h458 _M_create_node(const value_type& __x) in _M_create_node()
506 list(const list& __x) in list()
744 push_front(const value_type& __x) in push_front()
774 push_back(const value_type& __x) in push_back()
819 insert(iterator __position, size_type __n, const value_type& __x) in insert()
901 swap(list& __x) in swap()
937 splice(iterator __position, list& __x) in splice()
957 splice(iterator __position, list& __x, iterator __i) in splice()
983 splice(iterator __position, list& __x, iterator __first, iterator __last) in splice()
1114 _M_initialize_dispatch(_Integer __n, _Integer __x, __true_type) in _M_initialize_dispatch()
[all …]
Dlist.tcc86 insert(iterator __position, const value_type& __x) in insert()
106 resize(size_type __new_size, value_type __x) in resize()
121 operator=(const list& __x) in operator =()
212 merge(list& __x) in merge()
242 merge(list& __x, _StrictWeakOrdering __comp) in merge()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dstdlib.h107 inline _LIBCPP_INLINE_VISIBILITY long abs(long __x) _NOEXCEPT { in abs()
111 inline _LIBCPP_INLINE_VISIBILITY long long abs(long long __x) _NOEXCEPT { in abs()
142 inline _LIBCPP_INLINE_VISIBILITY ldiv_t div(long __x, long __y) _NOEXCEPT { in div()
146 inline _LIBCPP_INLINE_VISIBILITY lldiv_t div(long long __x, in div()
/freebsd-12-stable/contrib/libstdc++/include/tr1/
Drandom.tcc193 _UIntType __x = _M_x[__i - 1]; in seed() local
274 __r, __a, __u, __s, __b, __t, __c, __l>& __x) in operator <<()
301 __r, __a, __u, __s, __b, __t, __c, __l>& __x) in operator >>()
396 const subtract_with_carry<_IntType, __m, __s, __r>& __x) in operator <<()
420 subtract_with_carry<_IntType, __m, __s, __r>& __x) in operator >>()
540 const subtract_with_carry_01<_RealType, __w, __s, __r>& __x) in operator <<()
565 subtract_with_carry_01<_RealType, __w, __s, __r>& __x) in operator >>()
607 __p, __r>& __x) in operator <<()
630 discard_block<_UniformRandomNumberGenerator, __p, __r>& __x) in operator >>()
713 _UniformRandomNumberGenerator2, __s2>& __x) in operator <<()
[all …]
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__iterator/
Dcommon_iterator.h43 constexpr __proxy(iter_reference_t<_Iter>&& __x) in __proxy()
56 constexpr __postfix_proxy(iter_reference_t<_Iter>&& __x) in __postfix_proxy()
243 friend void iter_swap(const common_iterator& __x, const common_iterator<_I2, _S2>& __y) in iter_swap()
Dfront_insert_iterator.h51 …IBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17 explicit front_insert_iterator(_Container& __x) : container(… in front_insert_iterator()
66 front_inserter(_Container& __x) in front_inserter()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/__functional/
Dbinder1st.h33 _LIBCPP_INLINE_VISIBILITY binder1st(const __Operation& __x, in binder1st()
47 bind1st(const __Operation& __op, const _Tp& __x) in bind1st()
Dbinder2nd.h34 binder2nd(const __Operation& __x, const typename __Operation::second_argument_type __y) in binder2nd()
47 bind2nd(const __Operation& __op, const _Tp& __x) in bind2nd()

1234