Lines Matching defs:z
167 static complex<_Tp> sqrtT(const complex<_Tp>& z) { in sqrtT()
188 sqrt(const complex<float>& z) { return sqrtT(z); } in sqrt()
191 sqrt(const complex<double>& z) { return sqrtT(z); } in sqrt()
195 sqrt(const complex<long double>& z) { return sqrtT(z); } in sqrt()
202 static complex<_Tp> expT(const complex<_Tp>& z) { in expT()
207 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>& z) in exp()
210 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>& z) in exp()
214 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>& z) in exp()
221 static complex<_Tp> log10T(const complex<_Tp>& z, const _Tp& ln10_inv) { in log10T()
229 _STLP_DECLSPEC complex<float> _STLP_CALL log10(const complex<float>& z) in log10()
235 _STLP_DECLSPEC complex<double> _STLP_CALL log10(const complex<double>& z) in log10()
242 _STLP_DECLSPEC complex<long double> _STLP_CALL log10(const complex<long double>& z) in log10()
252 static complex<_Tp> logT(const complex<_Tp>& z) { in logT()
259 _STLP_DECLSPEC complex<float> _STLP_CALL log(const complex<float>& z) in log()
262 _STLP_DECLSPEC complex<double> _STLP_CALL log(const complex<double>& z) in log()
266 _STLP_DECLSPEC complex<long double> _STLP_CALL log(const complex<long double>& z) in log()
283 complex<_Tp> z = z_in; in powT() local