/l4re-core-master/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/common/bits/ |
A D | cmathcalls.h | 53 __MATHCALL (cacos, (_Mdouble_complex_ __z)); 56 __MATHCALL (casin, (_Mdouble_complex_ __z)); 59 __MATHCALL (catan, (_Mdouble_complex_ __z)); 63 __MATHCALL (ccos, (_Mdouble_complex_ __z)); 66 __MATHCALL (csin, (_Mdouble_complex_ __z)); 69 __MATHCALL (ctan, (_Mdouble_complex_ __z)); 99 __MATHCALL (cexp, (_Mdouble_complex_ __z)); 103 __MATHCALL (clog, (_Mdouble_complex_ __z)); 163 return __imag__ __z; in libm_hidden_proto() 170 return __real__ __z; in __MATH_PRECNAME() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/std/ |
A D | complex | 140 : _M_real(__z.real()), _M_imag(__z.imag()) { } 609 { return atan2(__z.imag(), __z.real()); } 797 // 26.2.8/10 sin(__z): Returns the sine of __z. 906 { return std::sin(__z) / std::cos(__z); } 934 { return std::sinh(__z) / std::cosh(__z); } 1658 const _Tp __r2 = __z.real() * __z.real(); 1739 * (__z.real() + __z.imag()) + _Tp(1.0), 1740 _Tp(2.0) * __z.real() * __z.imag()); 1777 const _Tp __i2 = __z.imag() * __z.imag(); 1890 const _Tp __den = (__z.real() * __z.real() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/std/ |
A D | complex | 140 : _M_real(__z.real()), _M_imag(__z.imag()) { } 611 { return atan2(__z.imag(), __z.real()); } 802 // 26.2.8/10 sin(__z): Returns the sine of __z. 911 { return std::sin(__z) / std::cos(__z); } 939 { return std::sinh(__z) / std::cosh(__z); } 1663 const _Tp __r2 = __z.real() * __z.real(); 1744 * (__z.real() + __z.imag()) + _Tp(1.0), 1745 _Tp(2.0) * __z.real() * __z.imag()); 1782 const _Tp __i2 = __z.imag() * __z.imag(); 1895 const _Tp __den = (__z.real() * __z.real() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/std/ |
A D | complex | 140 : _M_real(__z.real()), _M_imag(__z.imag()) { } 611 { return atan2(__z.imag(), __z.real()); } 802 // 26.2.8/10 sin(__z): Returns the sine of __z. 911 { return std::sin(__z) / std::cos(__z); } 939 { return std::sinh(__z) / std::cosh(__z); } 1663 const _Tp __r2 = __z.real() * __z.real(); 1744 * (__z.real() + __z.imag()) + _Tp(1.0), 1745 _Tp(2.0) * __z.real() * __z.imag()); 1782 const _Tp __i2 = __z.imag() * __z.imag(); 1895 const _Tp __den = (__z.real() * __z.real() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/std/ |
A D | complex | 140 : _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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/std/ |
A D | complex | 137 : _M_real(__z.real()), _M_imag(__z.imag()) { } 604 { return atan2(__z.imag(), __z.real()); } 792 // 26.2.8/10 sin(__z): Returns the sine of __z. 901 { return std::sin(__z) / std::cos(__z); } 929 { return std::sinh(__z) / std::cosh(__z); } 1653 const _Tp __r2 = __z.real() * __z.real(); 1734 * (__z.real() + __z.imag()) + _Tp(1.0), 1735 _Tp(2.0) * __z.real() * __z.imag()); 1772 const _Tp __i2 = __z.imag() * __z.imag(); 1885 const _Tp __den = (__z.real() * __z.real() [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/include/tr1/ |
A D | complex | 92 /// acos(__z) [8.1.2]. 105 std::complex<_Tp> __t(-__z.imag(), __z.real()); 128 /// asin(__z) [8.1.3]. 141 const _Tp __r2 = __z.real() * __z.real(); 142 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag(); 172 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/include/tr1/ |
A D | complex | 92 /// acos(__z) [8.1.2]. 105 std::complex<_Tp> __t(-__z.imag(), __z.real()); 128 /// asin(__z) [8.1.3]. 141 const _Tp __r2 = __z.real() * __z.real(); 142 const _Tp __x = _Tp(1.0) - __r2 - __z.imag() * __z.imag(); 172 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/tr1/ |
A D | complex | 94 /// 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/include/std/ |
A D | complex | 146 : _M_real(__z.real()), _M_imag(__z.imag()) { } 638 { return atan2(__z.imag(), __z.real()); } 710 { return complex<_Tp>(__z.real(), -__z.imag()); } 714 // 26.2.8/1 cos(__z): Returns the cosine of __z. 832 // 26.2.8/10 sin(__z): Returns the sine of __z. 941 { return std::sin(__z) / std::cos(__z); } 969 { 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()); [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/include/std/ |
A D | complex | 145 : _M_real(__z.real()), _M_imag(__z.imag()) { } 637 { return atan2(__z.imag(), __z.real()); } 709 { return complex<_Tp>(__z.real(), -__z.imag()); } 713 // 26.2.8/1 cos(__z): Returns the cosine of __z. 831 // 26.2.8/10 sin(__z): Returns the sine of __z. 940 { return std::sin(__z) / std::cos(__z); } 968 { return std::sinh(__z) / std::cosh(__z); } 1678 const _Tp __r2 = __z.real() * __z.real(); 1759 * (__z.real() + __z.imag()) + _Tp(1.0), 1760 _Tp(2.0) * __z.real() * __z.imag()); [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/include/std/ |
A D | complex | 145 : _M_real(__z.real()), _M_imag(__z.imag()) { } 635 { return atan2(__z.imag(), __z.real()); } 707 { return complex<_Tp>(__z.real(), -__z.imag()); } 711 // 26.2.8/1 cos(__z): Returns the cosine of __z. 829 // 26.2.8/10 sin(__z): Returns the sine of __z. 938 { return std::sin(__z) / std::cos(__z); } 966 { return std::sinh(__z) / std::cosh(__z); } 1676 const _Tp __r2 = __z.real() * __z.real(); 1757 * (__z.real() + __z.imag()) + _Tp(1.0), 1758 _Tp(2.0) * __z.real() * __z.imag()); [all …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-5/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-8/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-6/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-7/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-10/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-9/src/c++98/ |
A D | tree.cc | 309 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 …]
|
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-4.9/src/c++98/ |
A D | tree.cc | 309 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 …]
|