Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dcomplex155 _GLIBCXX_CONSTEXPR complex(const complex<_Up>& __z)
156 : _M_real(__z.real()), _M_imag(__z.imag()) { }
281 complex<_Tp>::operator=(const complex<_Up>& __z)
283 _M_real = __z.real();
284 _M_imag = __z.imag();
292 complex<_Tp>::operator+=(const complex<_Up>& __z)
294 _M_real += __z.real();
295 _M_imag += __z.imag();
303 complex<_Tp>::operator-=(const complex<_Up>& __z)
305 _M_real -= __z.real();
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dcomplex69 __complex_acos(const std::complex<_Tp>& __z)
71 const std::complex<_Tp> __t = std::tr1::asin(__z);
78 __complex_acos(__complex__ float __z)
79 { return __builtin_cacosf(__z); }
82 __complex_acos(__complex__ double __z)
83 { return __builtin_cacos(__z); }
86 __complex_acos(const __complex__ long double& __z)
87 { return __builtin_cacosl(__z); }
91 acos(const std::complex<_Tp>& __z)
92 { return __complex_acos(__z.__rep()); }
[all …]
Dell_integral.tcc78 __ellint_rf(_Tp __x, _Tp __y, _Tp __z) in __ellint_rf() argument
83 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) in __ellint_rf()
86 else if (__x + __y < __lolim || __x + __z < __lolim in __ellint_rf()
87 || __y + __z < __lolim) in __ellint_rf()
99 _Tp __zn = __z; in __ellint_rf()
316 __ellint_rd(_Tp __x, _Tp __y, _Tp __z) in __ellint_rd() argument
326 else if (__x + __y < __lolim || __z < __lolim) in __ellint_rd()
339 _Tp __zn = __z; in __ellint_rd()
563 __ellint_rj(_Tp __x, _Tp __y, _Tp __z, _Tp __p) in __ellint_rj() argument
568 if (__x < _Tp(0) || __y < _Tp(0) || __z < _Tp(0)) in __ellint_rj()
[all …]
Dmodified_bessel_func.tcc379 const _Tp __z = _Tp(2) * __absx * __rootx / _Tp(3); in __airy() local
384 else if (__z == _S_inf) in __airy()
389 else if (__z == -_S_inf) in __airy()
395 __bessel_ik(_Tp(1) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
402 __bessel_ik(_Tp(2) / _Tp(3), __z, __I_nu, __K_nu, __Ip_nu, __Kp_nu); in __airy()
414 __bessel_jn(_Tp(1) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
420 __bessel_jn(_Tp(2) / _Tp(3), __z, __J_nu, __N_nu, __Jp_nu, __Np_nu); in __airy()
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 ()()
1394 const _IntType __z = _M_waiting(__urng, _M_t - _IntType(__x)); in operator ()() local
1395 __ret = _IntType(__x) + __z; in operator ()()
1663 const result_type __z = __u * __v * __v; in operator ()() local
1666 __reject = __r < result_type(4.5) * __z - __k; in operator ()()
[all …]
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()
Dcmath659 fma(float __x, float __y, float __z)
660 { return __builtin_fmaf(__x, __y, __z); }
663 fma(long double __x, long double __y, long double __z)
664 { return __builtin_fmal(__x, __y, __z); }
669 fma(_Tp __x, _Up __y, _Vp __z)
672 return fma(__type(__x), __type(__y), __type(__z));
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/decimal/
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) {}
248 decimal32(unsigned long long __z) : __val(__z) {}
251 decimal32(__decfloat32 __z) : __val(__z) {}
329 decimal64(int __z) : __val(__z) {}
330 decimal64(unsigned int __z) : __val(__z) {}
331 decimal64(long __z) : __val(__z) {}
[all …]
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dstl_tree.h417 _Rb_tree_rebalance_for_erase(_Rb_tree_node_base* const __z, in _GLIBCXX_VISIBILITY()
851 _M_insert_node(_Base_ptr __x, _Base_ptr __y, _Link_type __z); in _GLIBCXX_VISIBILITY()
862 _M_insert_lower_node(_Base_ptr __p, _Link_type __z); in _GLIBCXX_VISIBILITY()
865 _M_insert_equal_lower_node(_Link_type __z); in _GLIBCXX_VISIBILITY()
1832 _Link_type __z = __node_gen(_GLIBCXX_FORWARD(_Arg, __v)); in _GLIBCXX_VISIBILITY() local
1834 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p, in _GLIBCXX_VISIBILITY()
1837 return iterator(__z); in _GLIBCXX_VISIBILITY()
1857 _Link_type __z = _M_create_node(_GLIBCXX_FORWARD(_Arg, __v)); in _GLIBCXX_VISIBILITY() local
1859 _Rb_tree_insert_and_rebalance(__insert_left, __z, __p, in _GLIBCXX_VISIBILITY()
1862 return iterator(__z); in _GLIBCXX_VISIBILITY()
[all …]
Drandom.tcc435 discard(unsigned long long __z) in discard() argument
437 while (__z > state_size - _M_p) in discard()
439 __z -= state_size - _M_p; in discard()
442 _M_p += __z; in discard()
462 result_type __z = _M_x[_M_p++]; in operator ()() local
463 __z ^= (__z >> __u) & __d; in operator ()()
464 __z ^= (__z << __s) & __b; in operator ()()
465 __z ^= (__z << __t) & __c; in operator ()()
466 __z ^= (__z >> __l); in operator ()()
468 return __z; in operator ()()
[all …]
Drandom.h351 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
353 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
572 discard(unsigned long long __z); in _GLIBCXX_VISIBILITY()
783 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
785 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
1014 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
1016 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
1224 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
1226 for (; __z != 0ULL; --__z) in _GLIBCXX_VISIBILITY()
1457 discard(unsigned long long __z) in _GLIBCXX_VISIBILITY()
[all …]
Dhashtable_policy.h508 _Prime_rehash_policy(float __z = 1.0) noexcept in _GLIBCXX_VISIBILITY()
509 : _M_max_load_factor(__z), _M_next_resize(0) { } in _GLIBCXX_VISIBILITY()
586 _Power2_rehash_policy(float __z = 1.0) noexcept in _GLIBCXX_VISIBILITY()
587 : _M_max_load_factor(__z), _M_next_resize(0) { } in _GLIBCXX_VISIBILITY()
1153 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
1156 __this->__rehash_policy(_RehashPolicy(__z)); in _GLIBCXX_VISIBILITY()
Dunordered_set.h840 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
841 { _M_h.max_load_factor(__z); } in _GLIBCXX_VISIBILITY()
1685 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
1686 { _M_h.max_load_factor(__z); } in _GLIBCXX_VISIBILITY()
Dunordered_map.h1106 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
1107 { _M_h.max_load_factor(__z); } in _GLIBCXX_VISIBILITY()
2006 max_load_factor(float __z) in _GLIBCXX_VISIBILITY()
2007 { _M_h.max_load_factor(__z); } in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/c_global/
Dcmath1398 fma(float __x, float __y, float __z)
1399 { return __builtin_fmaf(__x, __y, __z); }
1402 fma(long double __x, long double __y, long double __z)
1403 { return __builtin_fmal(__x, __y, __z); }
1409 fma(_Tp __x, _Up __y, _Vp __z)
1412 return fma(__type(__x), __type(__y), __type(__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));
[all …]
/netbsd/src/sys/arch/arm/include/
Darmreg.h695 const bool __z = (psr & PSR_Z_bit); in arm_cond_ok_p() local
701 __ok = __z; in arm_cond_ok_p()
713 __ok = __c && !__z; in arm_cond_ok_p()
719 __ok = __n == __v && !__z; in arm_cond_ok_p()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
Dfunctional156 const _Operation3& __z)
157 : _M_fn1(__x), _M_fn2(__y), _M_fn3(__z) { }
Drandom.tcc193 discard(unsigned long long __z) in discard() argument
195 while (__z > state_size - _M_pos) in discard()
197 __z -= state_size - _M_pos; in discard()
202 _M_pos += __z; in discard()
Drandom130 discard(unsigned long long __z);
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/
DChangeLog-20111124 * include/std/complex (__complex_acosh): Fix for __z.real() < 0.
DChangeLog-20043246 * include/std/std_complex.h (sin(const complex<_Tp>& __z)): Make
/netbsd/src/external/lgpl3/gmp/dist/
DChangeLog25887 * mpz/fac_ui.c (MPZ_SET_1_NZ): Actually use `__z'.