Home
last modified time | relevance | path

Searched refs:__z (Results 1 – 25 of 30) sorted by relevance

12

/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dhypot.h59 _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()
77 __z *= __scale; in __hypot()
80 return __math::sqrt(__x * __x + __y * __y + __z * __z) / __scale; in __hypot()
83 …_HIDE_FROM_ABI float hypot(float __x, float __y, float __z) { return __math::__hypot(__x, __y, __z in hypot() argument
85 …E_FROM_ABI double hypot(double __x, double __y, double __z) { return __math::__hypot(__x, __y, __z in hypot() argument
87 inline _LIBCPP_HIDE_FROM_ABI long double hypot(long double __x, long double __y, long double __z) { in hypot() argument
88 return __math::__hypot(__x, __y, __z); in hypot()
95 _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2, _A3>::type hypot(_A1 __x, _A2 __y, _A3 __z) _NOE… in hypot() argument
100 …static_cast<__result_type>(__x), static_cast<__result_type>(__y), static_cast<__result_type>(__z)); in hypot()
H A Dfma.h26 inline _LIBCPP_HIDE_FROM_ABI float fma(float __x, float __y, float __z) _NOEXCEPT { in fma() argument
27 return __builtin_fmaf(__x, __y, __z); in fma()
31 _LIBCPP_HIDE_FROM_ABI double fma(double __x, double __y, double __z) _NOEXCEPT { in fma() argument
32 return __builtin_fma(__x, __y, __z); in fma()
35 inline _LIBCPP_HIDE_FROM_ABI long double fma(long double __x, long double __y, long double __z) _NO… in fma() argument
36 return __builtin_fmal(__x, __y, __z); in fma()
43 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2, _A3>::type fma(_A1 __x, _A2 __y, _A3 __z)… in fma() argument
48 return __builtin_fma((__result_type)__x, (__result_type)__y, (__result_type)__z); in fma()
H A Dremainder.h49 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
55 return __builtin_remquo(__x, __y, __z); in remquo()
58 inline _LIBCPP_HIDE_FROM_ABI long double remquo(long double __x, long double __y, int* __z) _NOEXCE… in remquo() argument
59 return __builtin_remquol(__x, __y, __z); in remquo()
63 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type remquo(_A1 __x, _A2 __y, int* __z) … in remquo() argument
66 return __math::remquo((__result_type)__x, (__result_type)__y, __z); in remquo()
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h194 std::complex<_Tp> __z = log(__x + sqrt(__sqr(__x) + _Tp(1))); in asinh() local
195 return std::complex<_Tp>(copysign(__z.real(), __x.real()), in asinh()
196 copysign(__z.imag(), __x.imag())); in asinh()
227 std::complex<_Tp> __z = log(__x + sqrt(__sqr(__x) - _Tp(1))); in acosh() local
228 return std::complex<_Tp>(copysign(__z.real(), _Tp(0)), in acosh()
229 copysign(__z.imag(), __x.imag())); in acosh()
257 std::complex<_Tp> __z = log((_Tp(1) + __x) / (_Tp(1) - __x)) / _Tp(2); in atanh() local
258 return std::complex<_Tp>(copysign(__z.real(), __x.real()), in atanh()
259 copysign(__z.imag(), __x.imag())); in atanh()
318 std::complex<_Tp> __z = asinh(complex<_Tp>(-__x.imag(), __x.real())); in asin() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_texture_intrinsics.h527 __IMPL_S("__tex3D_v2", "__tex3D_rmnf_v2", (float __x, float __y, float __z),
529 ("f"(__x), "f"(__y), "f"(__z)));
533 (float __x, float __y, float __z, unsigned char *__ir),
539 ("f"(__x), "f"(__y), "f"(__z)));
542 (float __x, float __y, float __z, const float4 *__dPdx,
547 ("f"(__x), "f"(__y), "f"(__z), "f"(__dPdx->x), "f"(__dPdx->y),
552 (float __x, float __y, float __z, const float4 *__dPdx,
560 ("f"(__x), "f"(__y), "f"(__z), "f"(__dPdx->x), "f"(__dPdx->y),
564 (float __x, float __y, float __z, float __level), "tex.level.3d.v4",
566 ("f"(__x), "f"(__y), "f"(__z), "f"(__level)));
[all …]
H A Dtgmath.h52 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument
54 __tg_promote(__z)))
728 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument
729 {return fmaf(__x, __y, __z);} in __tg_fma()
733 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument
734 {return fma(__x, __y, __z);} in __tg_fma()
738 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument
739 {return fmal(__x, __y, __z);} in __tg_fma()
742 #define fma(__x, __y, __z) \ argument
743 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \
[all …]
H A D__clang_hip_cmath.h48 __DEVICE__ __CONSTEXPR__ float fma(float __x, float __y, float __z) { in fma() argument
49 return ::fmaf(__x, __y, __z); in fma()
173 _Float16 __z) { in fma() argument
174 return __builtin_fmaf16(__x, __y, __z); in fma()
555 fma(__T1 __x, __T2 __y, __T3 __z) {
557 return ::fma((__result_type)__x, (__result_type)__y, (__result_type)__z);
566 fma(__T1 __x, __T2 __y, __T3 __z) {
567 return ::fma((double)__x, (double)__y, (double)__z);
H A Dxmmintrin.h1975 _mm_set_ps(float __z, float __y, float __x, float __w) in _mm_set_ps() argument
1977 return __extension__ (__m128){ __w, __x, __y, __z }; in _mm_set_ps()
2003 _mm_setr_ps(float __z, float __y, float __x, float __w) in _mm_setr_ps() argument
2005 return __extension__ (__m128){ __z, __y, __x, __w }; in _mm_setr_ps()
H A D__clang_cuda_cmath.h313 fma(__T1 __x, __T2 __y, __T3 __z) {
314 return std::fma((double)__x, (double)__y, (double)__z);
/freebsd/contrib/llvm-project/libcxx/include/__functional/
H A Dhash.h100 _Size __z =
102 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
113 __z = __rotate(__z + __w.first, 33) * __k1;
115 …__w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second, __y + std::__loadword<_Size>(__s +…
116 std::swap(__z, __x);
120 return __hash_len_16(__hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
172 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
173 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
191 __weak_hash_len_32_with_seeds(_Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
193 __b = __rotate(__b + __a + __z, 21);
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcomplex287 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w);
291 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w);
786 operator*(const complex<_Tp>& __z, const complex<_Tp>& __w) {
787 _Tp __a = __z.real();
788 _Tp __b = __z.imag();
819 operator/(const complex<_Tp>& __z, const complex<_Tp>& __w) {
820 _Tp __a = __z.real();
821 _Tp __b = __z.imag();
1149 complex<_Tp> __z = std::log(__x + std::sqrt(std::__sqr(__x) + _Tp(1)));
1150 return complex<_Tp>(std::copysign(__z.real(), __x.real()), std::copysign(__z.imag(), __x.imag()));
[all …]
H A D__tree330 // Precondition: __z == __root or == a direct or indirect child of __root.
331 // Effects: unlinks __z from the tree rooted at __root, rebalancing as needed.
333 // nor any of its children refer to __z. end_node->__left_
336 _LIBCPP_HIDE_FROM_ABI void __tree_remove(_NodePtr __root, _NodePtr __z) _NOEXCEPT {
338 _LIBCPP_ASSERT_INTERNAL(__z != nullptr, "The node to remove should not be null");
340 // __z will be removed from the tree. Client still needs to destruct/deallocate it
341 // __y is either __z, or if __z has two children, __tree_next(__z).
344 …_NodePtr __y = (__z->__left_ == nullptr || __z->__right_ == nullptr) ? __z : std::__tree_next(__z);
364 // If we didn't remove __z, do so now by splicing in __y for __z,
365 // but copy __z's color. This does not impact __x or __w.
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/
H A Dsort.h51 __sort3(_ForwardIterator __x, _ForwardIterator __y, _ForwardIterator __z, _Compare __c) { in __sort3() argument
57 if (!__c(*__z, *__y)) // if y <= z in __sort3()
60 _Ops::iter_swap(__y, __z); // x <= z && y < z in __sort3()
69 if (__c(*__z, *__y)) // x > y, if y > z in __sort3()
71 _Ops::iter_swap(__x, __z); // x < y && y < z in __sort3()
77 if (__c(*__z, *__y)) // if y > z in __sort3()
79 _Ops::iter_swap(__y, __z); // x <= y && y < z in __sort3()
174 …ap(_RandomAccessIterator __x, _RandomAccessIterator __y, _RandomAccessIterator __z, _Compare __c) {
177 bool __r = __c(*__z, *__x);
178 value_type __tmp = __r ? *__z : *__x;
[all …]
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dyear_month_day.h78 const int __z = __d.count() + 719468; in __from_days() local
79 const int __era = (__z >= 0 ? __z : __z - 146096) / 146097; in __from_days()
80 …const unsigned __doe = static_cast<unsigned>(__z - __era * 146097); // [0, 14609… in __from_days()
H A Dtime_zone.h104 to_sys(const local_time<_Duration>& __time, choose __z) const { in to_sys() argument
112 switch (__z) { in to_sys()
H A Dformatter.h245 __time_zone __z = __formatter::__convert_to_time_zone(__value); in __format_chrono_using_chrono_specs() local
367 __formatter::__format_zone_offset(__sstr, __z.__offset, false); in __format_chrono_using_chrono_specs()
372 ranges::copy(__z.__abbrev, std::ostreambuf_iterator<_CharT>{__sstr}); in __format_chrono_using_chrono_specs()
394 __formatter::__format_zone_offset(__sstr, __z.__offset, true); in __format_chrono_using_chrono_specs()
/freebsd/contrib/llvm-project/libcxx/include/__random/
H A Dgamma_distribution.h120 const result_type __z = 64 * __w * __w * __w * __v * __v; in operator()
121 if (__z <= 1 - 2 * __y * __y / __x) in operator()
123 if (std::log(__z) <= 2 * (__b * std::log(__x / __b) - __y)) in operator()
145 const result_type __z = 64 * __w * __w * __w * __v * __v; operator() local
H A Ddiscard_block_engine.h88 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) { in discard() argument
89 for (; __z; --__z) in discard()
H A Dmersenne_twister_engine.h204 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) {
205 for (; __z; --__z)
742 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d);
744 __z ^= __lshift<__s>(__z) & __b;
745 __z ^= __lshift<__t>(__z) & __c;
746 return __z ^ __rshift<__l>(__z);
157 discard(unsigned long long __z) discard() argument
408 result_type __z = __x_[__i_] ^ (__rshift<__u>(__x_[__i_]) & __d); operator() local
[all...]
H A Dindependent_bits_engine.h109 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) {
110 for (; __z; --__z)
130 discard(unsigned long long __z) discard() argument
H A Dshuffle_order_engine.h114 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) {
115 for (; __z; --__z)
H A Dsubtract_with_carry_engine.h102 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) {
103 for (; __z; --__z)
125 discard(unsigned long long __z) discard() argument
H A Dlinear_congruential_engine.h287 _LIBCPP_HIDE_FROM_ABI void discard(unsigned long long __z) {
288 for (; __z; --__z)
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/
H A Dnumeric_impl.h
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/
H A Dparallel_stable_sort.h

12