Home
last modified time | relevance | path

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

12

/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/std/
H A Dcomplex137 : _M_real(__z.real()), _M_imag(__z.imag()) { }
602 { return atan2(__z.imag(), __z.real()); }
790 // 26.2.8/10 sin(__z): Returns the sine of __z.
899 { return std::sin(__z) / std::cos(__z); }
927 { return std::sinh(__z) / std::cosh(__z); }
1643 const _Tp __r2 = __z.real() * __z.real();
1724 * (__z.real() + __z.imag()) + _Tp(1.0),
1725 _Tp(2.0) * __z.real() * __z.imag());
1762 const _Tp __i2 = __z.imag() * __z.imag();
1875 const _Tp __den = (__z.real() * __z.real()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/
H A Dcomplex140 : _M_real(__z.real()), _M_imag(__z.imag()) { }
630 { return atan2(__z.imag(), __z.real()); }
821 // 26.2.8/10 sin(__z): Returns the sine of __z.
930 { return std::sin(__z) / std::cos(__z); }
958 { return std::sinh(__z) / std::cosh(__z); }
1682 const _Tp __r2 = __z.real() * __z.real();
1763 * (__z.real() + __z.imag()) + _Tp(1.0),
1764 _Tp(2.0) * __z.real() * __z.imag());
1801 const _Tp __i2 = __z.imag() * __z.imag();
1914 const _Tp __den = (__z.real() * __z.real()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/
H A Dcomplex94 /// acos(__z) [8.1.2].
107 std::complex<_Tp> __t(-__z.imag(), __z.real());
130 /// asin(__z) [8.1.3].
143 const _Tp __r2 = __z.real() * __z.real();
144 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
174 /// atan(__z) [8.1.4].
223 std::complex<_Tp> __t((__z.real() - __z.imag())
224 * (__z.real() + __z.imag()) + _Tp(1.0),
225 _Tp(2.0) * __z.real() * __z.imag());
262 const _Tp __i2 = __z.imag() * __z.imag();
[all …]
H A Dell_integral.tcc78 __ellint_rf(_Tp __x, _Tp __y, _Tp __z) in __ellint_rf() argument
85 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) in __ellint_rf()
88 else if (__x + __y < __lolim || __x + __z < __lolim in __ellint_rf()
89 || __y + __z < __lolim) in __ellint_rf()
101 _Tp __zn = __z; in __ellint_rf()
318 __ellint_rd(_Tp __x, _Tp __y, _Tp __z) in __ellint_rd() argument
330 else if (__x + __y < __lolim || __z < __lolim) in __ellint_rd()
343 _Tp __zn = __z; in __ellint_rd()
570 __ellint_rj(_Tp __x, _Tp __y, _Tp __z, _Tp __p) in __ellint_rj() argument
582 || __y + __z < __lolim || __p < __lolim) in __ellint_rj()
[all …]
H A Dmodified_bessel_func.tcc379 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3); in __airy() local
385 else if (__z == _S_inf) in __airy()
390 else if (__z == -_S_inf) in __airy()
396 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
403 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
415 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
421 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
H A Drandom.tcc349 result_type __z = _M_x[_M_p++]; in operator ()() local
350 __z ^= (__z >> __u); in operator ()()
351 __z ^= (__z << __s) & __b; in operator ()()
352 __z ^= (__z << __t) & __c; in operator ()()
353 __z ^= (__z >> __l); in operator ()()
355 return __z; in operator ()()
1395 __ret = _IntType(__x) + __z; in operator ()()
1663 const result_type __z = __u * __v * __v; in operator ()() local
1668 __reject = __r < std::log(__z); in operator ()()
1681 __x = std::pow(__z, __c); in operator ()()
[all …]
H A Dhashtable_policy.h383 _Prime_rehash_policy(float __z = 1.0) in _GLIBCXX_VISIBILITY()
384 : _M_max_load_factor(__z), _M_growth_factor(2.f), _M_next_resize(0) { } in _GLIBCXX_VISIBILITY()
546 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
549 __this->__rehash_policy(_Prime_rehash_policy(__z)); in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/
H A Dcomplex93 /// acos(__z) [8.1.2].
106 std::complex<_Tp> __t(-__z.imag(), __z.real());
129 /// asin(__z) [8.1.3].
142 const _Tp __r2 = __z.real() * __z.real();
143 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag();
173 /// atan(__z) [8.1.4].
224 std::complex<_Tp> __t((__z.real() - __z.imag())
225 * (__z.real() + __z.imag()) + _Tp(1.0),
226 _Tp(2.0) * __z.real() * __z.imag());
263 const _Tp __i2 = __z.imag() * __z.imag();
[all …]
H A Dell_integral.tcc74 __ellint_rf(const _Tp __x, const _Tp __y, const _Tp __z) in __ellint_rf() argument
81 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) in __ellint_rf()
84 else if (__x + __y < __lolim || __x + __z < __lolim in __ellint_rf()
85 || __y + __z < __lolim) in __ellint_rf()
97 _Tp __zn = __z; in __ellint_rf()
326 else if (__x + __y < __lolim || __z < __lolim) in __ellint_rd()
339 _Tp __zn = __z; in __ellint_rd()
574 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) in __ellint_rj()
577 else if (__x + __y < __lolim || __x + __z < __lolim in __ellint_rj()
578 || __y + __z < __lolim || __p < __lolim) in __ellint_rj()
[all …]
H A Dmodified_bessel_func.tcc375 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3); in __airy() local
383 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
390 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
402 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
408 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
H A Drandom.tcc352 result_type __z = _M_x[_M_p++]; in operator ()() local
353 __z ^= (__z >> __u); in operator ()()
354 __z ^= (__z << __s) & __b; in operator ()()
355 __z ^= (__z << __t) & __c; in operator ()()
356 __z ^= (__z >> __l); in operator ()()
358 return __z; in operator ()()
1398 __ret = _IntType(__x) + __z; in operator ()()
1666 const result_type __z = __u * __v * __v; in operator ()() local
1671 __reject = __r < std::log(__z); in operator ()()
1684 __x = std::pow(__z, __c); in operator ()()
[all …]
H A Dhashtable_policy.h383 _Prime_rehash_policy(float __z = 1.0) in _GLIBCXX_VISIBILITY()
384 : _M_max_load_factor(__z), _M_growth_factor(2.f), _M_next_resize(0) { } in _GLIBCXX_VISIBILITY()
551 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
554 __this->__rehash_policy(_Prime_rehash_policy(__z)); in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/
H A Dtree.cc309 if (__y != __z) in _Rb_tree_rebalance_for_erase()
312 __z->_M_left->_M_parent = __y; in _Rb_tree_rebalance_for_erase()
313 __y->_M_left = __z->_M_left; in _Rb_tree_rebalance_for_erase()
314 if (__y != __z->_M_right) in _Rb_tree_rebalance_for_erase()
324 if (__root == __z) in _Rb_tree_rebalance_for_erase()
326 else if (__z->_M_parent->_M_left == __z) in _Rb_tree_rebalance_for_erase()
332 __y = __z; in _Rb_tree_rebalance_for_erase()
340 if (__root == __z) in _Rb_tree_rebalance_for_erase()
343 if (__z->_M_parent->_M_left == __z) in _Rb_tree_rebalance_for_erase()
347 if (__leftmost == __z) in _Rb_tree_rebalance_for_erase()
[all …]
H A Dvalarray.cc77 const size_t __z = __i.size(); in __gslice_to_index() local
79 for (size_t __j = 0; __j < __z; ++__j) in __gslice_to_index()
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/
H A Dtree.cc309 if (__y != __z) in _Rb_tree_rebalance_for_erase()
312 __z->_M_left->_M_parent = __y; in _Rb_tree_rebalance_for_erase()
313 __y->_M_left = __z->_M_left; in _Rb_tree_rebalance_for_erase()
314 if (__y != __z->_M_right) in _Rb_tree_rebalance_for_erase()
324 if (__root == __z) in _Rb_tree_rebalance_for_erase()
326 else if (__z->_M_parent->_M_left == __z) in _Rb_tree_rebalance_for_erase()
332 __y = __z; in _Rb_tree_rebalance_for_erase()
340 if (__root == __z) in _Rb_tree_rebalance_for_erase()
343 if (__z->_M_parent->_M_left == __z) in _Rb_tree_rebalance_for_erase()
347 if (__leftmost == __z) in _Rb_tree_rebalance_for_erase()
[all …]
H A Dvalarray.cc78 const size_t __z = __i.size(); in __gslice_to_index() local
80 for (size_t __j = 0; __j < __z; ++__j) in __gslice_to_index()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/decimal/
H A Ddecimal243 decimal32(int __z) : __val(__z) {}
244 decimal32(unsigned int __z) : __val(__z) {}
245 decimal32(long __z) : __val(__z) {}
246 decimal32(unsigned long __z) : __val(__z) {}
247 decimal32(long long __z) : __val(__z) {}
329 decimal64(int __z) : __val(__z) {}
331 decimal64(long __z) : __val(__z) {}
333 decimal64(long long __z) : __val(__z) {}
416 decimal128(int __z) : __val(__z) {}
418 decimal128(long __z) : __val(__z) {}
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/decimal/
H A Ddecimal243 decimal32(int __z) : __val(__z) {}
244 decimal32(unsigned int __z) : __val(__z) {}
245 decimal32(long __z) : __val(__z) {}
246 decimal32(unsigned long __z) : __val(__z) {}
247 decimal32(long long __z) : __val(__z) {}
326 decimal64(int __z) : __val(__z) {}
328 decimal64(long __z) : __val(__z) {}
330 decimal64(long long __z) : __val(__z) {}
410 decimal128(int __z) : __val(__z) {}
412 decimal128(long __z) : __val(__z) {}
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/config/cpu/i486/opt/ext/
H A Dopt_random.h51 __m128i __z = _mm_srli_si128(__c, __sr2); in _GLIBCXX_VISIBILITY() local
53 __z = _mm_xor_si128(__z, __a); in _GLIBCXX_VISIBILITY()
54 __z = _mm_xor_si128(__z, __v); in _GLIBCXX_VISIBILITY()
57 __z = _mm_xor_si128(__z, __x); in _GLIBCXX_VISIBILITY()
58 return _mm_xor_si128(__z, __y); in _GLIBCXX_VISIBILITY()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/
H A Dstl_tree.h1774 return iterator(__z); in _GLIBCXX_VISIBILITY()
1799 return iterator(__z); in _GLIBCXX_VISIBILITY()
2323 return iterator(__z); in _GLIBCXX_VISIBILITY()
2334 _S_key(__z))); in _GLIBCXX_VISIBILITY()
2339 return iterator(__z); in _GLIBCXX_VISIBILITY()
2376 _M_drop_node(__z); in _GLIBCXX_VISIBILITY()
2381 _M_drop_node(__z); in _GLIBCXX_VISIBILITY()
2402 _M_drop_node(__z); in _GLIBCXX_VISIBILITY()
2423 _M_drop_node(__z); in _GLIBCXX_VISIBILITY()
2428 _M_drop_node(__z); in _GLIBCXX_VISIBILITY()
[all …]
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/c_global/
H A Dcmath1398 fma(float __x, float __y, float __z)
1399 { return __builtin_fmaf(__x, __y, __z); }
1403 { return __builtin_fmal(__x, __y, __z); }
1409 fma(_Tp __x, _Up __y, _Vp __z)
1854 __hypot3(_Tp __x, _Tp __y, _Tp __z)
1858 __z = std::abs(__z);
1859 if (_Tp __a = __x < __y ? __y < __z ? __z : __y : __x < __z ? __z : __x)
1862 + (__z / __a) * (__z / __a));
1868 hypot(float __x, float __y, float __z)
1872 hypot(double __x, double __y, double __z)
[all …]
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++11/
H A Dcompatibility-atomic-c++0x.cc121 __atomic_flag_for_address(const volatile void* __z) _GLIBCXX_NOTHROW in __atomic_flag_for_address() argument
123 uintptr_t __u = reinterpret_cast<uintptr_t>(__z); in __atomic_flag_for_address()
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++11/
H A Dcompatibility-atomic-c++0x.cc120 __atomic_flag_for_address(const volatile void* __z) _GLIBCXX_NOTHROW in __atomic_flag_for_address() argument
122 uintptr_t __u = reinterpret_cast<uintptr_t>(__z); in __atomic_flag_for_address()
/dragonfly/contrib/gmp/mpz/
H A Dfac_ui.c38 mpz_ptr __z = (z); \
40 PTR(__z)[0] = (n); \
41 SIZ(__z) = 1; \
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/
H A Drandom.h259 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
261 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
475 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
477 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
687 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
689 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
916 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
918 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
1125 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
1127 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
[all …]

12