Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/stlport/src/
Dcomplex.cpp282 static complex<_Tp> powT(const complex<_Tp>& z_in, int n) { in powT() argument
283 complex<_Tp> z = z_in; in powT()
314 _STLP_DECLSPEC complex<float> _STLP_CALL pow(const complex<float>& z_in, int n) in pow() argument
315 { return powT(z_in, n); } in pow()
326 _STLP_DECLSPEC complex<double> _STLP_CALL pow(const complex<double>& z_in, int n) in pow() argument
327 { return powT(z_in, n); } in pow()
341 _STLP_DECLSPEC complex<long double> _STLP_CALL pow(const complex<long double>& z_in, int n) in pow() argument
342 { return powT(z_in, n); } in pow()