1 /* 2 * Copyright 2001-2009, Haiku. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _MATH_H_ 6 #define _MATH_H_ 7 8 9 #define M_E 2.7182818284590452354 /* e */ 10 #define M_LOG2E 1.4426950408889634074 /* log 2e */ 11 #define M_LOG10E 0.43429448190325182765 /* log 10e */ 12 #define M_LN2 0.69314718055994530942 /* log e2 */ 13 #define M_LN10 2.30258509299404568402 /* log e10 */ 14 #define M_PI 3.14159265358979323846 /* pi */ 15 #define M_PI_2 1.57079632679489661923 /* pi/2 */ 16 #define M_PI_4 0.78539816339744830962 /* pi/4 */ 17 #define M_1_PI 0.31830988618379067154 /* 1/pi */ 18 #define M_2_PI 0.63661977236758134308 /* 2/pi */ 19 #define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */ 20 #define M_SQRT2 1.41421356237309504880 /* sqrt(2) */ 21 #define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */ 22 23 /* platform independent IEEE floating point special values */ 24 #define __HUGE_VAL_v 0x7ff0000000000000LL 25 #define __huge_val_t union { unsigned char __c[8]; long long __ll; double __d; } 26 #ifndef HUGE_VAL 27 # define HUGE_VAL (((__huge_val_t) { __ll: __HUGE_VAL_v }).__d) 28 #endif 29 30 #define __HUGE_VALF_v 0x7f800000L 31 #define __huge_valf_t union { unsigned char __c[4]; long __l; float __f; } 32 #define HUGE_VALF (((__huge_valf_t) { __l: __HUGE_VALF_v }).__f) 33 34 /* TODO: define HUGE_VALL for long doubles */ 35 36 #define __NAN_VALF_v 0x7fc00000L 37 #define NAN (((__huge_valf_t) { __l: __NAN_VALF_v }).__f) 38 39 #define INFINITY HUGE_VALF 40 41 /* floating-point categories */ 42 #define FP_NAN 0 43 #define FP_INFINITE 1 44 #define FP_ZERO 2 45 #define FP_SUBNORMAL 3 46 #define FP_NORMAL 4 47 48 #ifdef __cplusplus 49 struct __exception; 50 extern "C" int matherr(struct __exception *); 51 struct __exception { 52 #else 53 struct exception; 54 extern int matherr(struct exception *); 55 struct exception { 56 #endif 57 int type; 58 char *name; 59 double arg1; 60 double arg2; 61 double retval; 62 }; 63 64 #define DOMAIN 1 65 #define SING 2 66 #define OVERFLOW 3 67 #define UNDERFLOW 4 68 #define TLOSS 5 69 #define PLOSS 6 70 71 extern int signgam; 72 73 74 #ifdef __cplusplus 75 extern "C" { 76 #endif 77 78 /* float math functions */ 79 extern float acosf(float x); 80 extern float acoshf(float x); 81 extern float asinf(float x); 82 extern float asinhf(float x); 83 extern float atan2f(float y, float x); 84 extern float atanf(float x); 85 extern float atanhf(float x); 86 extern float cbrtf(float x); 87 extern float ceilf(float x); 88 extern float cosf(float x); 89 extern float coshf(float x); 90 extern float expf(float x); 91 extern float expm1f(float x); 92 extern float fabsf(float x); 93 extern float floorf(float x); 94 extern float fmodf(float x, float y); 95 extern float frexpf(float x, int *_exponent); 96 extern float gammaf(float x); 97 extern float hypotf(float x, float y); 98 extern float ldexpf(float x, int exponent); 99 extern float lgammaf(float x); 100 extern long long llrintf(float x); 101 extern float log10f(float x); 102 extern float log1pf(float x); 103 extern float logbf(float x); 104 extern float logf(float x); 105 extern long lrintf(float x); 106 extern long lroundf(float x); 107 extern float modff(float x, float *y); 108 extern float nearbyintf(float x); 109 extern float powf(float x, float y); 110 extern float remquof(float x, float y, int *quo); 111 extern float roundf(float x); 112 extern float sinf(float x); 113 extern float sinhf(float x); 114 extern float sqrtf(float x); 115 extern float tanf(float x); 116 extern float tanhf(float x); 117 118 /* double math functions */ 119 extern double acos(double x); 120 extern double acosh(double x); 121 extern double asin(double x); 122 extern double asinh(double x); 123 extern double atan(double x); 124 extern double atan2(double x, double y); 125 extern double atanh(double x); 126 extern double ceil(double x); 127 extern double cos(double x); 128 extern double cosh(double x); 129 extern double exp(double x); 130 extern double fabs(double x); 131 extern double floor(double x); 132 extern double fmod(double x, double y); 133 extern double frexp(double x, int *_exponent); 134 extern double gamma(double x); 135 extern double ldexp(double x, int exponent); 136 extern double lgamma(double x); 137 extern long long llrint(double x); 138 extern double log(double x); 139 extern double log10(double x); 140 extern long lrint(double x); 141 extern long lround(double x); 142 extern double modf(double x, double *y); 143 extern double nearbyint(double x); 144 extern double pow(double x, double y); 145 extern double remquo(double x, double y, int *quo); 146 extern double round(double x); 147 extern double sin(double x); 148 extern double sinh(double x); 149 extern double sqrt(double x); 150 extern double tan(double x); 151 extern double tanh(double x); 152 extern double trunc(double x); 153 154 /* long double math functions */ 155 extern long double acosl(long double x); 156 extern long double acoshl(long double x); 157 extern long double asinl(long double x); 158 extern long double atanl(long double x); 159 extern long double atanhl(long double x); 160 extern long double atan2l(long double y, long double x); 161 extern long double lgammal(long double x); 162 extern long double nearbyintl(long double x); 163 extern long long llrintl(long double x); 164 extern long lrintl(long double x); 165 extern long lroundl(long double x); 166 extern long double remquol(long double x, long double y, int *quo); 167 extern long double roundl(long double x); 168 169 /* some BSD non-ANSI or POSIX math functions */ 170 extern double cbrt(double x); 171 extern double erf(double x); 172 extern double erfc(double x); 173 extern double expm1(double x); 174 extern double gamma_r(double x, int *y); 175 extern double hypot(double x, double y); 176 extern int ilogb(double x); 177 extern double j0(double x); 178 extern double j1(double x); 179 extern double jn(int x, double y); 180 extern double lgamma_r(double x, int *y); 181 extern double log1p(double x); 182 extern double logb(double x); 183 extern double nextafter(double x, double y); 184 extern double nexttoward(double x, long double y); 185 extern double remainder(double x, double y); 186 extern double rint(double x); 187 extern double scalb (double x, double y); 188 extern double y0(double x); 189 extern double y1(double x); 190 extern double yn(int x, double y); 191 192 /* other stuff as defined in BeOS */ 193 extern int isinff(float value); 194 extern int finitef(float value); 195 extern float dremf(float x, float y); 196 extern float significandf(float x); 197 extern float copysignf(float x, float y); 198 extern int isnanf(float value); 199 extern double significand(double x); 200 extern double copysign(double x, double y); 201 extern double scalbln(double x, long n); 202 extern double scalbn(double x, int y); 203 extern double drem(double x, double y); 204 extern int finite(double x); 205 extern float j0f(float x); 206 extern float j1f(float x); 207 extern float jnf(int x, float y); 208 extern float y0f(float x); 209 extern float y1f(float x); 210 extern float ynf(int x, float y); 211 extern float erff(float x); 212 extern float erfcf(float x); 213 extern float gammaf_r(float x, int *y); 214 extern float lgammaf_r(float x, int *y); 215 extern float rintf(float x); 216 extern float nextafterf(float x, float y); 217 extern float nexttowardf(float x, long double y); 218 extern float remainderf(float x, float y); 219 extern float scalbf(float x, float n); 220 extern float scalbnf(float x, int n); 221 extern int ilogbf(float x); 222 223 extern long double nextafterl(long double x, long double y); 224 extern long double nexttowardl(long double x, long double y); 225 extern long double remainderl(long double x, long double y); 226 extern long double rintl(long double x); 227 extern long double scalbnl(long double x, int n); 228 extern long double scalblnl(long double x, long n); 229 230 /* prototypes for functions used in the macros below */ 231 extern int __fpclassifyf(float value); 232 extern int __signbitf(float value); 233 extern int __finitef(float value); 234 extern int __isnanf(float value); 235 extern int __isinff(float value); 236 237 extern int __fpclassifyl(long double value); 238 extern int __signbitl(long double value); 239 extern int __finitel(long double value); 240 extern int __isnanl(long double value); 241 extern int __isinfl(long double value); 242 243 extern int __fpclassify(double value); 244 extern int __signbit(double value); 245 extern int __finite(double value); 246 extern int __isnan(double value); 247 extern int __isinf(double value); 248 249 /* returns number of classification appropriate for 'value' */ 250 #define fpclassify(value) \ 251 (sizeof(value) == sizeof(float) ? __fpclassifyf(value) \ 252 : sizeof(value) == sizeof(double) ? __fpclassify(value) \ 253 : __fpclassifyl(value)) 254 255 /* returns non-zero if 'value' is negative */ 256 # define signbit(value) \ 257 (sizeof(value) == sizeof(float) ? __signbitf(value) \ 258 : sizeof(value) == sizeof(double) ? __signbit(value) \ 259 : __signbitl(value)) 260 261 /* returns non-zero if 'value' is not Inf or NaN */ 262 # define isfinite(value) \ 263 (sizeof(value) == sizeof(float) ? __finitef(value) \ 264 : sizeof(value) == sizeof(double) ? __finite(value) \ 265 : __finitel(value)) 266 267 /* returns non-zero if 'value' is neither zero, sub-normal, Inf, nor NaN */ 268 # define isnormal(value) \ 269 (fpclassify(value) == FP_NORMAL) 270 271 /* returns non-zero if 'value' is NaN */ 272 # define isnan(value) \ 273 (sizeof(value) == sizeof(float) ? __isnanf(value) \ 274 : sizeof(value) == sizeof(double) ? __isnan(value) \ 275 : __isnanl(value)) 276 277 /* returns non-zero if 'value is Inf */ 278 # define isinf(value) \ 279 (sizeof(value) == sizeof(float) ? __isinff(value) \ 280 : sizeof(value) == sizeof(double) ? __isinf(value) \ 281 : __isinfl(value)) 282 283 #ifdef __cplusplus 284 } 285 #endif 286 287 #endif /* _MATH_H_ */ 288