Searched refs:hermite (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__math/ |
H A D | special_functions.h | 62 inline _LIBCPP_HIDE_FROM_ABI double hermite(unsigned __n, double __x) { return std::__hermite(__n, … in hermite() function 64 inline _LIBCPP_HIDE_FROM_ABI float hermite(unsigned __n, float __x) { in hermite() function 66 return static_cast<float>(std::hermite(__n, static_cast<double>(__x))); in hermite() 69 inline _LIBCPP_HIDE_FROM_ABI long double hermite(unsigned __n, long double __x) { return std::__her… in hermite() function 71 inline _LIBCPP_HIDE_FROM_ABI float hermitef(unsigned __n, float __x) { return std::hermite(__n, __x… in hermitef() 73 …IDE_FROM_ABI long double hermitel(unsigned __n, long double __x) { return std::hermite(__n, __x); } in hermitel() 76 _LIBCPP_HIDE_FROM_ABI double hermite(unsigned __n, _Integer __x) { in hermite() function 77 return std::hermite(__n, static_cast<double>(__x)); in hermite()
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | cmath | 207 double hermite(unsigned n, double x); // C++17 208 float hermite(unsigned n, float x); // C++17 209 long double hermite(unsigned n, long double x); // C++17 213 double hermite(unsigned n, Integer x); // C++17
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | cmath.cppm |
|
H A D | cmath.inc | 339 // [sf.cmath.hermite], Hermite polynomials 340 using std::hermite;
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 1461 SYMBOL(hermite, std::, <cmath>)
|