Home
last modified time | relevance | path

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

/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
Dlegendre_function.tcc216 __sph_legendre(unsigned int __l, unsigned int __m, _Tp __theta) in __sph_legendre() argument
218 if (__isnan(__theta)) in __sph_legendre()
221 const _Tp __x = std::cos(__theta); in __sph_legendre()
Dcmath1588 sph_legendref(unsigned int __l, unsigned int __m, float __theta)
1589 { return __detail::__sph_legendre<float>(__l, __m, __theta); }
1592 sph_legendrel(unsigned int __l, unsigned int __m, long double __theta)
1593 { return __detail::__sph_legendre<long double>(__l, __m, __theta); }
1598 sph_legendre(unsigned int __l, unsigned int __m, _Tp __theta)
1601 return __detail::__sph_legendre<__type>(__l, __m, __theta);
Dcomplex391 polar(const _Tp& __rho, const _Up& __theta)
394 return std::polar(__type(__rho), __type(__theta));
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
Dspecfun.h1117 sph_legendref(unsigned int __l, unsigned int __m, float __theta) in _GLIBCXX_VISIBILITY()
1118 { return __detail::__sph_legendre<float>(__l, __m, __theta); } in _GLIBCXX_VISIBILITY()
1128 sph_legendrel(unsigned int __l, unsigned int __m, long double __theta) in _GLIBCXX_VISIBILITY()
1129 { return __detail::__sph_legendre<long double>(__l, __m, __theta); } in _GLIBCXX_VISIBILITY()
1149 sph_legendre(unsigned int __l, unsigned int __m, _Tp __theta) in _GLIBCXX_VISIBILITY()
1152 return __detail::__sph_legendre<__type>(__l, __m, __theta); in _GLIBCXX_VISIBILITY()
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/std/
Dcomplex712 polar(const _Tp& __rho, const _Tp& __theta)
715 return complex<_Tp>(__rho * cos(__theta), __rho * sin(__theta));