Lines Matching refs:__x
206 assoc_laguerref(unsigned int __n, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
207 { return __detail::__assoc_laguerre<float>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
216 assoc_laguerrel(unsigned int __n, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
217 { return __detail::__assoc_laguerre<long double>(__n, __m, __x); } in _GLIBCXX_VISIBILITY()
252 assoc_laguerre(unsigned int __n, unsigned int __m, _Tp __x) in _GLIBCXX_VISIBILITY()
255 return __detail::__assoc_laguerre<__type>(__n, __m, __x); in _GLIBCXX_VISIBILITY()
267 assoc_legendref(unsigned int __l, unsigned int __m, float __x) in _GLIBCXX_VISIBILITY()
268 { return __detail::__assoc_legendre_p<float>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
276 assoc_legendrel(unsigned int __l, unsigned int __m, long double __x) in _GLIBCXX_VISIBILITY()
277 { return __detail::__assoc_legendre_p<long double>(__l, __m, __x); } in _GLIBCXX_VISIBILITY()
298 assoc_legendre(unsigned int __l, unsigned int __m, _Tp __x) in _GLIBCXX_VISIBILITY()
301 return __detail::__assoc_legendre_p<__type>(__l, __m, __x); in _GLIBCXX_VISIBILITY()
504 cyl_bessel_if(float __nu, float __x) in _GLIBCXX_VISIBILITY()
505 { return __detail::__cyl_bessel_i<float>(__nu, __x); } in _GLIBCXX_VISIBILITY()
514 cyl_bessel_il(long double __nu, long double __x) in _GLIBCXX_VISIBILITY()
515 { return __detail::__cyl_bessel_i<long double>(__nu, __x); } in _GLIBCXX_VISIBILITY()
535 cyl_bessel_i(_Tpnu __nu, _Tp __x) in _GLIBCXX_VISIBILITY()
538 return __detail::__cyl_bessel_i<__type>(__nu, __x); in _GLIBCXX_VISIBILITY()
550 cyl_bessel_jf(float __nu, float __x) in _GLIBCXX_VISIBILITY()
551 { return __detail::__cyl_bessel_j<float>(__nu, __x); } in _GLIBCXX_VISIBILITY()
560 cyl_bessel_jl(long double __nu, long double __x) in _GLIBCXX_VISIBILITY()
561 { return __detail::__cyl_bessel_j<long double>(__nu, __x); } in _GLIBCXX_VISIBILITY()
581 cyl_bessel_j(_Tpnu __nu, _Tp __x) in _GLIBCXX_VISIBILITY()
584 return __detail::__cyl_bessel_j<__type>(__nu, __x); in _GLIBCXX_VISIBILITY()
596 cyl_bessel_kf(float __nu, float __x) in _GLIBCXX_VISIBILITY()
597 { return __detail::__cyl_bessel_k<float>(__nu, __x); } in _GLIBCXX_VISIBILITY()
606 cyl_bessel_kl(long double __nu, long double __x) in _GLIBCXX_VISIBILITY()
607 { return __detail::__cyl_bessel_k<long double>(__nu, __x); } in _GLIBCXX_VISIBILITY()
633 cyl_bessel_k(_Tpnu __nu, _Tp __x) in _GLIBCXX_VISIBILITY()
636 return __detail::__cyl_bessel_k<__type>(__nu, __x); in _GLIBCXX_VISIBILITY()
648 cyl_neumannf(float __nu, float __x) in _GLIBCXX_VISIBILITY()
649 { return __detail::__cyl_neumann_n<float>(__nu, __x); } in _GLIBCXX_VISIBILITY()
658 cyl_neumannl(long double __nu, long double __x) in _GLIBCXX_VISIBILITY()
659 { return __detail::__cyl_neumann_n<long double>(__nu, __x); } in _GLIBCXX_VISIBILITY()
681 cyl_neumann(_Tpnu __nu, _Tp __x) in _GLIBCXX_VISIBILITY()
684 return __detail::__cyl_neumann_n<__type>(__nu, __x); in _GLIBCXX_VISIBILITY()
844 expintf(float __x) in _GLIBCXX_VISIBILITY()
845 { return __detail::__expint<float>(__x); } in _GLIBCXX_VISIBILITY()
854 expintl(long double __x) in _GLIBCXX_VISIBILITY()
855 { return __detail::__expint<long double>(__x); } in _GLIBCXX_VISIBILITY()
870 expint(_Tp __x) in _GLIBCXX_VISIBILITY()
873 return __detail::__expint<__type>(__x); in _GLIBCXX_VISIBILITY()
885 hermitef(unsigned int __n, float __x) in _GLIBCXX_VISIBILITY()
886 { return __detail::__poly_hermite<float>(__n, __x); } in _GLIBCXX_VISIBILITY()
895 hermitel(unsigned int __n, long double __x) in _GLIBCXX_VISIBILITY()
896 { return __detail::__poly_hermite<long double>(__n, __x); } in _GLIBCXX_VISIBILITY()
918 hermite(unsigned int __n, _Tp __x) in _GLIBCXX_VISIBILITY()
921 return __detail::__poly_hermite<__type>(__n, __x); in _GLIBCXX_VISIBILITY()
933 laguerref(unsigned int __n, float __x) in _GLIBCXX_VISIBILITY()
934 { return __detail::__laguerre<float>(__n, __x); } in _GLIBCXX_VISIBILITY()
943 laguerrel(unsigned int __n, long double __x) in _GLIBCXX_VISIBILITY()
944 { return __detail::__laguerre<long double>(__n, __x); } in _GLIBCXX_VISIBILITY()
962 laguerre(unsigned int __n, _Tp __x) in _GLIBCXX_VISIBILITY()
965 return __detail::__laguerre<__type>(__n, __x); in _GLIBCXX_VISIBILITY()
977 legendref(unsigned int __l, float __x) in _GLIBCXX_VISIBILITY()
978 { return __detail::__poly_legendre_p<float>(__l, __x); } in _GLIBCXX_VISIBILITY()
987 legendrel(unsigned int __l, long double __x) in _GLIBCXX_VISIBILITY()
988 { return __detail::__poly_legendre_p<long double>(__l, __x); } in _GLIBCXX_VISIBILITY()
1007 legendre(unsigned int __l, _Tp __x) in _GLIBCXX_VISIBILITY()
1010 return __detail::__poly_legendre_p<__type>(__l, __x); in _GLIBCXX_VISIBILITY()
1073 sph_besself(unsigned int __n, float __x) in _GLIBCXX_VISIBILITY()
1074 { return __detail::__sph_bessel<float>(__n, __x); } in _GLIBCXX_VISIBILITY()
1083 sph_bessell(unsigned int __n, long double __x) in _GLIBCXX_VISIBILITY()
1084 { return __detail::__sph_bessel<long double>(__n, __x); } in _GLIBCXX_VISIBILITY()
1102 sph_bessel(unsigned int __n, _Tp __x) in _GLIBCXX_VISIBILITY()
1105 return __detail::__sph_bessel<__type>(__n, __x); in _GLIBCXX_VISIBILITY()
1164 sph_neumannf(unsigned int __n, float __x) in _GLIBCXX_VISIBILITY()
1165 { return __detail::__sph_neumann<float>(__n, __x); } in _GLIBCXX_VISIBILITY()
1174 sph_neumannl(unsigned int __n, long double __x) in _GLIBCXX_VISIBILITY()
1175 { return __detail::__sph_neumann<long double>(__n, __x); } in _GLIBCXX_VISIBILITY()
1193 sph_neumann(unsigned int __n, _Tp __x) in _GLIBCXX_VISIBILITY()
1196 return __detail::__sph_neumann<__type>(__n, __x); in _GLIBCXX_VISIBILITY()
1219 airy_aif(float __x) in _GLIBCXX_VISIBILITY()
1222 std::__detail::__airy<float>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1230 airy_ail(long double __x) in _GLIBCXX_VISIBILITY()
1233 std::__detail::__airy<long double>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1242 airy_ai(_Tp __x) in _GLIBCXX_VISIBILITY()
1246 std::__detail::__airy<__type>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1254 airy_bif(float __x) in _GLIBCXX_VISIBILITY()
1257 std::__detail::__airy<float>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1265 airy_bil(long double __x) in _GLIBCXX_VISIBILITY()
1268 std::__detail::__airy<long double>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1277 airy_bi(_Tp __x) in _GLIBCXX_VISIBILITY()
1281 std::__detail::__airy<__type>(__x, __Ai, __Bi, __Aip, __Bip); in _GLIBCXX_VISIBILITY()
1295 conf_hypergf(float __a, float __c, float __x) in _GLIBCXX_VISIBILITY()
1296 { return std::__detail::__conf_hyperg<float>(__a, __c, __x); } in _GLIBCXX_VISIBILITY()
1306 conf_hypergl(long double __a, long double __c, long double __x) in _GLIBCXX_VISIBILITY()
1307 { return std::__detail::__conf_hyperg<long double>(__a, __c, __x); } in _GLIBCXX_VISIBILITY()
1327 conf_hyperg(_Tpa __a, _Tpc __c, _Tp __x) in _GLIBCXX_VISIBILITY()
1330 return std::__detail::__conf_hyperg<__type>(__a, __c, __x); in _GLIBCXX_VISIBILITY()
1343 hypergf(float __a, float __b, float __c, float __x) in _GLIBCXX_VISIBILITY()
1344 { return std::__detail::__hyperg<float>(__a, __b, __c, __x); } in _GLIBCXX_VISIBILITY()
1354 hypergl(long double __a, long double __b, long double __c, long double __x) in _GLIBCXX_VISIBILITY()
1355 { return std::__detail::__hyperg<long double>(__a, __b, __c, __x); } in _GLIBCXX_VISIBILITY()
1376 hyperg(_Tpa __a, _Tpb __b, _Tpc __c, _Tp __x) in _GLIBCXX_VISIBILITY()
1380 return std::__detail::__hyperg<__type>(__a, __b, __c, __x); in _GLIBCXX_VISIBILITY()