Home
last modified time | relevance | path

Searched refs:z_in (Results 1 – 1 of 1) sorted by relevance

/external/stlport/src/
Dcomplex.cpp276 static complex<_Tp> powT(const complex<_Tp>& z_in, int n) { in powT() argument
277 complex<_Tp> z = z_in; in powT()
308 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& z_in, int n) in pow() argument
309 { return powT(z_in, n); } in pow()
320 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& z_in, int n) in pow() argument
321 { return powT(z_in, n); } in pow()
335 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& z_in, int n) in pow() argument
336 { return powT(z_in, n); } in pow()