HomeSort by relevance Sort by last modified time
    Searched refs:__z (Results 1 - 25 of 97) sorted by null

1 2 3 4

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
cmathcalls.h 54 __MATHCALL (cacos, (_Mdouble_complex_ __z));
56 __MATHCALL (casin, (_Mdouble_complex_ __z));
58 __MATHCALL (catan, (_Mdouble_complex_ __z));
61 __MATHCALL (ccos, (_Mdouble_complex_ __z));
63 __MATHCALL (csin, (_Mdouble_complex_ __z));
65 __MATHCALL (ctan, (_Mdouble_complex_ __z));
71 __MATHCALL (cacosh, (_Mdouble_complex_ __z));
73 __MATHCALL (casinh, (_Mdouble_complex_ __z));
75 __MATHCALL (catanh, (_Mdouble_complex_ __z));
78 __MATHCALL (ccosh, (_Mdouble_complex_ __z));
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/bits/
cmathcalls.h 54 __MATHCALL (cacos, (_Mdouble_complex_ __z));
56 __MATHCALL (casin, (_Mdouble_complex_ __z));
58 __MATHCALL (catan, (_Mdouble_complex_ __z));
61 __MATHCALL (ccos, (_Mdouble_complex_ __z));
63 __MATHCALL (csin, (_Mdouble_complex_ __z));
65 __MATHCALL (ctan, (_Mdouble_complex_ __z));
71 __MATHCALL (cacosh, (_Mdouble_complex_ __z));
73 __MATHCALL (casinh, (_Mdouble_complex_ __z));
75 __MATHCALL (catanh, (_Mdouble_complex_ __z));
78 __MATHCALL (ccosh, (_Mdouble_complex_ __z));
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/bits/
cmathcalls.h 54 __MATHCALL (cacos, (_Mdouble_complex_ __z));
56 __MATHCALL (casin, (_Mdouble_complex_ __z));
58 __MATHCALL (catan, (_Mdouble_complex_ __z));
61 __MATHCALL (ccos, (_Mdouble_complex_ __z));
63 __MATHCALL (csin, (_Mdouble_complex_ __z));
65 __MATHCALL (ctan, (_Mdouble_complex_ __z));
71 __MATHCALL (cacosh, (_Mdouble_complex_ __z));
73 __MATHCALL (casinh, (_Mdouble_complex_ __z));
75 __MATHCALL (catanh, (_Mdouble_complex_ __z));
78 __MATHCALL (ccosh, (_Mdouble_complex_ __z));
    [all...]
  /external/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_complex.h 46 complex(const _Self& __z)
47 : _M_re(__z._M_re), _M_im(__z._M_im) {}
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)
58 : _M_re(__z._M_re), _M_im(__z._M_im) {}
61 _Self& operator=(const complex<_Tp2>& __z) {
    [all...]
_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);
_tree.c 143 _Rb_global<_Dummy>::_Rebalance_for_erase(_Rb_tree_node_base* __z,
147 _Rb_tree_node_base* __y = __z;
151 if (__y->_M_left == 0) // __z has at most one non-null child. y == z.
154 if (__y->_M_right == 0) // __z has exactly one non-null child. y == z.
156 else { // __z has two non-null children. Set __y to
157 __y = _Rb_tree_node_base::_S_minimum(__y->_M_right); // __z's successor. __x might be null.
162 if (__y != __z) { // relink y in place of z. y is z's successor
163 __z->_M_left->_M_parent = __y;
164 __y->_M_left = __z->_M_left;
165 if (__y != __z->_M_right)
    [all...]
  /external/stlport/src/
complex_io.cpp 30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; }
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) {
    [all...]
complex.cpp 40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z)
41 { return ::hypot(__z._M_re, __z._M_im); }
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z)
44 { return ::hypot(__z._M_re, __z._M_im); }
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z)
49 { return ::hypot(__z._M_re, __z._M_im); }
55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z)
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
complex_io.cpp 30 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<float>& __z)
31 { return __os << '(' << (double)__z.real() << ',' << (double)__z.imag() << ')'; }
35 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<double>& __z)
36 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
41 operator<< (basic_ostream<char, char_traits<char> >& __os, const complex<long double>& __z)
42 { return __os << '(' << __z.real() << ',' << __z.imag() << ')'; }
48 operator>>(basic_istream<char, char_traits<char> >& __is, complex<float>& __z) {
    [all...]
complex.cpp 40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z)
41 { return ::hypot(__z._M_re, __z._M_im); }
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z)
44 { return ::hypot(__z._M_re, __z._M_im); }
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z)
49 { return ::hypot(__z._M_re, __z._M_im); }
55 _STLP_DECLSPEC float _STLP_CALL arg(const complex<float>& __z)
    [all...]

Completed in 271 milliseconds

1 2 3 4