/external/stlport/stlport/stl/ |
D | _complex.h | 46 complex(const _Self& __z) in complex() 47 : _M_re(__z._M_re), _M_im(__z._M_im) {} in complex() 49 _Self& operator=(const _Self& __z) { 50 _M_re = __z._M_re; 51 _M_im = __z._M_im; 57 explicit complex(const complex<_Tp2>& __z) in complex() 58 : _M_re(__z._M_re), _M_im(__z._M_im) {} in complex() 61 _Self& operator=(const complex<_Tp2>& __z) { 62 _M_re = __z._M_re; 63 _M_im = __z._M_im; [all …]
|
D | _tree.c | 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z, in _Rebalance_for_erase() argument 147 _Rb_tree_node_base* __y = __z; in _Rebalance_for_erase() 162 if (__y != __z) { // relink y in place of z. y is z's successor in _Rebalance_for_erase() 163 __z->_M_left->_M_parent = __y; in _Rebalance_for_erase() 164 __y->_M_left = __z->_M_left; in _Rebalance_for_erase() 165 if (__y != __z->_M_right) { in _Rebalance_for_erase() 169 __y->_M_right = __z->_M_right; in _Rebalance_for_erase() 170 __z->_M_right->_M_parent = __y; in _Rebalance_for_erase() 174 if (__root == __z) in _Rebalance_for_erase() 176 else if (__z->_M_parent->_M_left == __z) in _Rebalance_for_erase() [all …]
|
D | _complex.c | 92 operator<<(basic_ostream<_CharT, _Traits>& __os, const complex<_Tp>& __z) { 97 __tmp << '(' << __z.real() << ',' << __z.imag() << ')'; 107 operator>>(basic_istream<_CharT, _Traits>& __is, complex<_Tp>& __z) { 133 __z = complex<_Tp>(__re, __im);
|
D | _function.h | 306 const _Operation3& __z) in binary_compose() argument 307 : _M_fn1(__x), _M_fn2(__y), _M_fn3(__z) { } in binary_compose()
|
D | _hashtable.h | 402 void max_load_factor(float __z) { 403 _M_max_load_factor = __z;
|
D | _bvector.h | 656 _STLP_PRIV _Bit_iterator __z(__q, 0); 657 this->_M_finish = _STLP_STD::copy(begin(), end(), __z);
|
D | _tree.h | 118 static _Base_ptr _STLP_CALL _Rebalance_for_erase(_Base_ptr __z,
|
/external/stlport/src/ |
D | complex_io.cpp | 30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z) in operator <<() argument 31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; } in operator <<() 35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z) in operator <<() argument 36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } in operator <<() 41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z) in operator <<() argument 42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; } in operator <<() 48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) { in operator >>() argument 68 __z = complex<float>(__re, __im); in operator >>() 74 operator>>(basic_istream<char, char_traits<char> >& __is, complex<double>& __z) { in operator >>() argument 94 __z = complex<double>(__re, __im); in operator >>() [all …]
|
D | complex.cpp | 40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z) in abs() argument 41 { return ::hypot(__z._M_re, __z._M_im); } in abs() 43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z) in abs() argument 44 { return ::hypot(__z._M_re, __z._M_im); } in abs() 48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z) in abs() argument 49 { return ::hypot(__z._M_re, __z._M_im); } in abs() 55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z) in arg() argument 56 { return ::atan2(__z._M_im, __z._M_re); } in arg() 59 _STLP_DECLSPEC double _STLP_CALL arg(const complex<double>& __z) in arg() argument 60 { return ::atan2(__z._M_im, __z._M_re); } in arg() [all …]
|
/external/clang/lib/Headers/ |
D | tgmath.h | 59 #define __tg_promote3(__x, __y, __z) (__typeof__(__tg_promote(__x) + \ argument 61 __tg_promote(__z))) 735 __tg_fma(float __x, float __y, float __z) in __tg_fma() argument 736 {return fmaf(__x, __y, __z);} in __tg_fma() 740 __tg_fma(double __x, double __y, double __z) in __tg_fma() argument 741 {return fma(__x, __y, __z);} in __tg_fma() 745 __tg_fma(long double __x,long double __y, long double __z) in __tg_fma() argument 746 {return fmal(__x, __y, __z);} in __tg_fma() 749 #define fma(__x, __y, __z) \ argument 750 __tg_fma(__tg_promote3((__x), (__y), (__z))(__x), \ [all …]
|
/external/kernel-headers/original/linux/ |
D | mmzone.h | 86 #define zone_pcp(__z, __cpu) ((__z)->pageset[(__cpu)]) argument 88 #define zone_pcp(__z, __cpu) (&(__z)->pageset[(__cpu)]) argument
|
/external/stlport/stlport/stl/debug/ |
D | _hashtable.h | 326 void max_load_factor(float __z) { in max_load_factor() argument 327 _STLP_VERBOSE_ASSERT((__z > 0.0f), _StlMsg_INVALID_ARGUMENT) in max_load_factor() 328 _M_non_dbg_impl.max_load_factor(__z); in max_load_factor()
|