Lines Matching refs:a
273 static complex<_Tp> powT(const _Tp& a, const complex<_Tp>& b) { in powT() argument
274 _Tp logr = ::log(a); in powT()
292 static complex<_Tp> powT(const complex<_Tp>& a, const _Tp& b) { in powT() argument
293 _Tp logr = ::log(::hypot(a._M_re,a._M_im)); in powT()
294 _Tp logi = ::atan2(a._M_im, a._M_re); in powT()
302 static complex<_Tp> powT(const complex<_Tp>& a, const complex<_Tp>& b) { in powT() argument
303 _Tp logr = ::log(::hypot(a._M_re,a._M_im)); in powT()
304 _Tp logi = ::atan2(a._M_im, a._M_re); in powT()
311 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const float& a, const complex<float>& b) in pow() argument
312 { return powT(a, b); } in pow()
317 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const float& b) in pow() argument
318 { return powT(a, b); } in pow()
320 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& a, const complex<float>& b) in pow() argument
321 { return powT(a, b); } in pow()
323 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const double& a, const complex<double>& b) in pow() argument
324 { return powT(a, b); } in pow()
329 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const double& b) in pow() argument
330 { return powT(a, b); } in pow()
332 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& a, const complex<double>& b) in pow() argument
333 { return powT(a, b); } in pow()
336 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const long double& a, in pow() argument
338 { return powT(a, b); } in pow()
344 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& a, in pow() argument
346 { return powT(a, b); } in pow()
348 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& a, in pow() argument
350 { return powT(a, b); } in pow()