mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 21:07:36 +00:00
LibM: Add missing float and long double function variants
This commit is contained in:
parent
eecaa3bed6
commit
03b2d30836
2 changed files with 383 additions and 106 deletions
|
@ -81,24 +81,34 @@ long double nanl(const char*) NOEXCEPT;
|
|||
double nan(const char*) NOEXCEPT;
|
||||
float nanf(const char*) NOEXCEPT;
|
||||
|
||||
long double acosl(long double) NOEXCEPT;
|
||||
double acos(double) NOEXCEPT;
|
||||
float acosf(float) NOEXCEPT;
|
||||
long double asinl(long double) NOEXCEPT;
|
||||
double asin(double) NOEXCEPT;
|
||||
float asinf(float) NOEXCEPT;
|
||||
long double atanl(long double) NOEXCEPT;
|
||||
double atan(double) NOEXCEPT;
|
||||
float atanf(float) NOEXCEPT;
|
||||
long double atan2l(long double, long double) NOEXCEPT;
|
||||
double atan2(double, double) NOEXCEPT;
|
||||
float atan2f(float, float) NOEXCEPT;
|
||||
long double cosl(long double) NOEXCEPT;
|
||||
double cos(double) NOEXCEPT;
|
||||
float cosf(float) NOEXCEPT;
|
||||
long double coshl(long double) NOEXCEPT;
|
||||
double cosh(double) NOEXCEPT;
|
||||
float coshf(float) NOEXCEPT;
|
||||
long double sinl(long double) NOEXCEPT;
|
||||
double sin(double) NOEXCEPT;
|
||||
float sinf(float) NOEXCEPT;
|
||||
long double sinhl(long double) NOEXCEPT;
|
||||
double sinh(double) NOEXCEPT;
|
||||
float sinhf(float) NOEXCEPT;
|
||||
long double tanl(long double) NOEXCEPT;
|
||||
double tan(double) NOEXCEPT;
|
||||
float tanf(float) NOEXCEPT;
|
||||
long double tanhl(long double) NOEXCEPT;
|
||||
double tanh(double) NOEXCEPT;
|
||||
float tanhf(float) NOEXCEPT;
|
||||
double ceil(double) NOEXCEPT;
|
||||
|
@ -121,27 +131,38 @@ long lrintf(float) NOEXCEPT;
|
|||
long long llrintl(long double) NOEXCEPT;
|
||||
long long llrint(double) NOEXCEPT;
|
||||
long long llrintf(float) NOEXCEPT;
|
||||
long double fabsl(long double) NOEXCEPT;
|
||||
double fabs(double) NOEXCEPT;
|
||||
float fabsf(float) NOEXCEPT;
|
||||
long double fmodl(long double, long double) NOEXCEPT;
|
||||
double fmod(double, double) NOEXCEPT;
|
||||
float fmodf(float, float) NOEXCEPT;
|
||||
long double expl(long double) NOEXCEPT;
|
||||
double exp(double) NOEXCEPT;
|
||||
float expf(float) NOEXCEPT;
|
||||
long double exp2l(long double) NOEXCEPT;
|
||||
double exp2(double) NOEXCEPT;
|
||||
float exp2f(float) NOEXCEPT;
|
||||
long double frexpl(long double, int* exp) NOEXCEPT;
|
||||
double frexp(double, int* exp) NOEXCEPT;
|
||||
float frexpf(float, int* exp) NOEXCEPT;
|
||||
long double logl(long double) NOEXCEPT;
|
||||
double log(double) NOEXCEPT;
|
||||
float logf(float) NOEXCEPT;
|
||||
long double log10l(long double) NOEXCEPT;
|
||||
double log10(double) NOEXCEPT;
|
||||
float log10f(float) NOEXCEPT;
|
||||
long double sqrtl(long double) NOEXCEPT;
|
||||
double sqrt(double) NOEXCEPT;
|
||||
float sqrtf(float) NOEXCEPT;
|
||||
|
||||
long double modfl(long double, long double*) NOEXCEPT;
|
||||
double modf(double, double*) NOEXCEPT;
|
||||
float modff(float, float*) NOEXCEPT;
|
||||
double ldexp(double, int exp) NOEXCEPT;
|
||||
float ldexpf(float, int exp) NOEXCEPT;
|
||||
|
||||
long double powl(long double x, long double y) NOEXCEPT;
|
||||
double pow(double x, double y) NOEXCEPT;
|
||||
float powf(float x, float y) NOEXCEPT;
|
||||
|
||||
|
@ -162,15 +183,33 @@ float frexpf(float, int*) NOEXCEPT;
|
|||
long double frexpl(long double, int*) NOEXCEPT;
|
||||
|
||||
double gamma(double) NOEXCEPT;
|
||||
long double expm1l(long double) NOEXCEPT;
|
||||
double expm1(double) NOEXCEPT;
|
||||
float expm1f(float) NOEXCEPT;
|
||||
long double cbrtl(long double) NOEXCEPT;
|
||||
double cbrt(double) NOEXCEPT;
|
||||
float cbrtf(float) NOEXCEPT;
|
||||
long double log1pl(long double) NOEXCEPT;
|
||||
double log1p(double) NOEXCEPT;
|
||||
float log1pf(float) NOEXCEPT;
|
||||
long double acoshl(long double) NOEXCEPT;
|
||||
double acosh(double) NOEXCEPT;
|
||||
float acoshf(float) NOEXCEPT;
|
||||
long double asinhl(long double) NOEXCEPT;
|
||||
double asinh(double) NOEXCEPT;
|
||||
float asinhf(float) NOEXCEPT;
|
||||
long double atanhl(long double) NOEXCEPT;
|
||||
double atanh(double) NOEXCEPT;
|
||||
float atanhf(float) NOEXCEPT;
|
||||
long double hypotl(long double, long double) NOEXCEPT;
|
||||
double hypot(double, double) NOEXCEPT;
|
||||
float hypotf(float, float) NOEXCEPT;
|
||||
long double erfl(long double) NOEXCEPT;
|
||||
double erf(double) NOEXCEPT;
|
||||
float erff(float) NOEXCEPT;
|
||||
long double erfcl(long double) NOEXCEPT;
|
||||
double erfc(double) NOEXCEPT;
|
||||
float erfcf(float) NOEXCEPT;
|
||||
|
||||
double nextafter(double, double) NOEXCEPT;
|
||||
float nextafterf(float, float) NOEXCEPT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue