modernc.org/cc@v1.0.1/v2/headers/linux_arm/usr/include/math.h (about) 1 /* Declarations for math functions. 2 Copyright (C) 1991-2016 Free Software Foundation, Inc. 3 This file is part of the GNU C Library. 4 5 The GNU C Library is free software; you can redistribute it and/or 6 modify it under the terms of the GNU Lesser General Public 7 License as published by the Free Software Foundation; either 8 version 2.1 of the License, or (at your option) any later version. 9 10 The GNU C Library is distributed in the hope that it will be useful, 11 but WITHOUT ANY WARRANTY; without even the implied warranty of 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13 Lesser General Public License for more details. 14 15 You should have received a copy of the GNU Lesser General Public 16 License along with the GNU C Library; if not, see 17 <http://www.gnu.org/licenses/>. */ 18 19 /* 20 * ISO C99 Standard: 7.12 Mathematics <math.h> 21 */ 22 23 #ifndef _MATH_H 24 #define _MATH_H 1 25 26 #include <features.h> 27 28 __BEGIN_DECLS 29 /* Get machine-dependent vector math functions declarations. */ 30 #include <bits/math-vector.h> 31 /* Get machine-dependent HUGE_VAL value (returned on overflow). 32 On all IEEE754 machines, this is +Infinity. */ 33 #include <bits/huge_val.h> 34 #ifdef __USE_ISOC99 35 #include <bits/huge_valf.h> 36 #include <bits/huge_vall.h> 37 /* Get machine-dependent INFINITY value. */ 38 #include <bits/inf.h> 39 /* Get machine-dependent NAN value (returned for some domain errors). */ 40 #include <bits/nan.h> 41 #endif /* __USE_ISOC99 */ 42 /* Get general and ISO C99 specific information. */ 43 #include <bits/mathdef.h> 44 /* The file <bits/mathcalls.h> contains the prototypes for all the 45 actual math functions. These macros are used for those prototypes, 46 so we can easily declare each function as both `name' and `__name', 47 and can declare the float versions `namef' and `__namef'. */ 48 #define __SIMD_DECL(function) __CONCAT (__DECL_SIMD_, function) 49 #define __MATHCALL_VEC(function, suffix, args) \ 50 __SIMD_DECL (__MATH_PRECNAME (function, suffix)) \ 51 __MATHCALL (function, suffix, args) 52 #define __MATHDECL_VEC(type, function,suffix, args) \ 53 __SIMD_DECL (__MATH_PRECNAME (function, suffix)) \ 54 __MATHDECL(type, function,suffix, args) 55 #define __MATHCALL(function,suffix, args) \ 56 __MATHDECL (_Mdouble_,function,suffix, args) 57 #define __MATHDECL(type, function,suffix, args) \ 58 __MATHDECL_1(type, function,suffix, args); \ 59 __MATHDECL_1(type, __CONCAT(__,function),suffix, args) 60 #define __MATHCALLX(function,suffix, args, attrib) \ 61 __MATHDECLX (_Mdouble_,function,suffix, args, attrib) 62 #define __MATHDECLX(type, function,suffix, args, attrib) \ 63 __MATHDECL_1(type, function,suffix, args) __attribute__ (attrib); \ 64 __MATHDECL_1(type, __CONCAT(__,function),suffix, args) __attribute__ (attrib) 65 #define __MATHDECL_1(type, function,suffix, args) \ 66 extern type __MATH_PRECNAME(function,suffix) args __THROW 67 #define _Mdouble_ double 68 #define __MATH_PRECNAME(name,r) __CONCAT(name,r) 69 #define __MATH_DECLARING_DOUBLE 1 70 #define _Mdouble_BEGIN_NAMESPACE __BEGIN_NAMESPACE_STD 71 #define _Mdouble_END_NAMESPACE __END_NAMESPACE_STD 72 #include <bits/mathcalls.h> 73 #undef _Mdouble_ 74 #undef _Mdouble_BEGIN_NAMESPACE 75 #undef _Mdouble_END_NAMESPACE 76 #undef __MATH_PRECNAME 77 #undef __MATH_DECLARING_DOUBLE 78 #ifdef __USE_ISOC99 79 /* Include the file of declarations again, this time using `float' 80 instead of `double' and appending f to each function name. */ 81 #ifndef _Mfloat_ 82 #define _Mfloat_ float 83 #endif 84 #define _Mdouble_ _Mfloat_ 85 #define __MATH_PRECNAME(name,r) name##f##r 86 #define __MATH_DECLARING_DOUBLE 0 87 #define _Mdouble_BEGIN_NAMESPACE __BEGIN_NAMESPACE_C99 88 #define _Mdouble_END_NAMESPACE __END_NAMESPACE_C99 89 #include <bits/mathcalls.h> 90 #undef _Mdouble_ 91 #undef _Mdouble_BEGIN_NAMESPACE 92 #undef _Mdouble_END_NAMESPACE 93 #undef __MATH_PRECNAME 94 #undef __MATH_DECLARING_DOUBLE 95 #if !(defined __NO_LONG_DOUBLE_MATH && defined _LIBC) \ 96 || defined __LDBL_COMPAT \ 97 || defined _LIBC_TEST 98 #ifdef __LDBL_COMPAT 99 #ifdef __USE_ISOC99 100 extern float __nldbl_nexttowardf(float __x, long double __y) 101 __THROW __attribute__ ((__const__)); 102 #ifdef __REDIRECT_NTH 103 extern float __REDIRECT_NTH(nexttowardf, (float __x, long double __y), __nldbl_nexttowardf) 104 __attribute__ ((__const__)); 105 extern double __REDIRECT_NTH(nexttoward, (double __x, long double __y), nextafter) __attribute__ ((__const__)); 106 extern long double __REDIRECT_NTH(nexttowardl, (long double __x, long double __y), nextafter) __attribute__ ((__const__)); 107 #endif 108 #endif 109 110 #undef __MATHDECL_1 111 #define __MATHDECL_2(type, function,suffix, args, alias) \ 112 extern type __REDIRECT_NTH(__MATH_PRECNAME(function,suffix), \ 113 args, alias) 114 #define __MATHDECL_1(type, function,suffix, args) \ 115 __MATHDECL_2(type, function,suffix, args, __CONCAT(function,suffix)) 116 #endif 117 118 /* Include the file of declarations again, this time using `long double' 119 instead of `double' and appending l to each function name. */ 120 121 #ifndef _Mlong_double_ 122 #define _Mlong_double_ long double 123 #endif 124 #define _Mdouble_ _Mlong_double_ 125 #define __MATH_PRECNAME(name,r) name##l##r 126 #define __MATH_DECLARING_DOUBLE 0 127 #define _Mdouble_BEGIN_NAMESPACE __BEGIN_NAMESPACE_C99 128 #define _Mdouble_END_NAMESPACE __END_NAMESPACE_C99 129 #define __MATH_DECLARE_LDOUBLE 1 130 #include <bits/mathcalls.h> 131 #undef _Mdouble_ 132 #undef _Mdouble_BEGIN_NAMESPACE 133 #undef _Mdouble_END_NAMESPACE 134 #undef __MATH_PRECNAME 135 #undef __MATH_DECLARING_DOUBLE 136 137 #endif /* !(__NO_LONG_DOUBLE_MATH && _LIBC) || __LDBL_COMPAT */ 138 139 #endif /* Use ISO C99. */ 140 #undef __MATHDECL_1 141 #undef __MATHDECL 142 #undef __MATHCALL 143 144 #if defined __USE_MISC || defined __USE_XOPEN 145 /* This variable is used by `gamma' and `lgamma'. */ 146 extern int signgam; 147 #endif 148 149 /* ISO C99 defines some generic macros which work on any data type. */ 150 #ifdef __USE_ISOC99 151 152 /* Get the architecture specific values describing the floating-point 153 evaluation. The following symbols will get defined: 154 155 float_t floating-point type at least as wide as `float' used 156 to evaluate `float' expressions 157 double_t floating-point type at least as wide as `double' used 158 to evaluate `double' expressions 159 160 FLT_EVAL_METHOD 161 Defined to 162 0 if `float_t' is `float' and `double_t' is `double' 163 1 if `float_t' and `double_t' are `double' 164 2 if `float_t' and `double_t' are `long double' 165 else `float_t' and `double_t' are unspecified 166 167 INFINITY representation of the infinity value of type `float' 168 169 FP_FAST_FMA 170 FP_FAST_FMAF 171 FP_FAST_FMAL 172 If defined it indicates that the `fma' function 173 generally executes about as fast as a multiply and an add. 174 This macro is defined only iff the `fma' function is 175 implemented directly with a hardware multiply-add instructions. 176 177 FP_ILOGB0 Expands to a value returned by `ilogb (0.0)'. 178 FP_ILOGBNAN Expands to a value returned by `ilogb (NAN)'. 179 180 DECIMAL_DIG Number of decimal digits supported by conversion between 181 decimal and all internal floating-point formats. 182 183 */ 184 185 /* All floating-point numbers can be put in one of these categories. */ 186 enum { 187 FP_NAN = 188 #define FP_NAN 0 189 FP_NAN, 190 FP_INFINITE = 191 #define FP_INFINITE 1 192 FP_INFINITE, 193 FP_ZERO = 194 #define FP_ZERO 2 195 FP_ZERO, 196 FP_SUBNORMAL = 197 #define FP_SUBNORMAL 3 198 FP_SUBNORMAL, 199 FP_NORMAL = 200 #define FP_NORMAL 4 201 FP_NORMAL 202 }; 203 204 /* GCC bug 66462 means we cannot use the math builtins with -fsignaling-nan, 205 so disable builtins if this is enabled. When fixed in a newer GCC, 206 the __SUPPORT_SNAN__ check may be skipped for those versions. */ 207 208 /* Return number of classification appropriate for X. */ 209 #if __GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__ \ 210 && !defined __OPTIMIZE_SIZE__ 211 #define fpclassify(x) __builtin_fpclassify (FP_NAN, FP_INFINITE, \ 212 FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x) 213 #elif defined __NO_LONG_DOUBLE_MATH 214 #define fpclassify(x) \ 215 (sizeof (x) == sizeof (float) ? __fpclassifyf (x) : __fpclassify (x)) 216 #else 217 #define fpclassify(x) \ 218 (sizeof (x) == sizeof (float) \ 219 ? __fpclassifyf (x) \ 220 : sizeof (x) == sizeof (double) \ 221 ? __fpclassify (x) : __fpclassifyl (x)) 222 #endif 223 224 /* Return nonzero value if sign of X is negative. */ 225 #if __GNUC_PREREQ (4,0) 226 #define signbit(x) \ 227 (sizeof (x) == sizeof (float) \ 228 ? __builtin_signbitf (x) \ 229 : sizeof (x) == sizeof (double) \ 230 ? __builtin_signbit (x) : __builtin_signbitl (x)) 231 #else 232 #ifdef __NO_LONG_DOUBLE_MATH 233 #define signbit(x) \ 234 (sizeof (x) == sizeof (float) ? __signbitf (x) : __signbit (x)) 235 #else 236 #define signbit(x) \ 237 (sizeof (x) == sizeof (float) \ 238 ? __signbitf (x) \ 239 : sizeof (x) == sizeof (double) \ 240 ? __signbit (x) : __signbitl (x)) 241 #endif 242 #endif 243 244 /* Return nonzero value if X is not +-Inf or NaN. */ 245 #if __GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__ 246 #define isfinite(x) __builtin_isfinite (x) 247 #elif defined __NO_LONG_DOUBLE_MATH 248 #define isfinite(x) \ 249 (sizeof (x) == sizeof (float) ? __finitef (x) : __finite (x)) 250 #else 251 #define isfinite(x) \ 252 (sizeof (x) == sizeof (float) \ 253 ? __finitef (x) \ 254 : sizeof (x) == sizeof (double) \ 255 ? __finite (x) : __finitel (x)) 256 #endif 257 258 /* Return nonzero value if X is neither zero, subnormal, Inf, nor NaN. */ 259 #if __GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__ 260 #define isnormal(x) __builtin_isnormal (x) 261 #else 262 #define isnormal(x) (fpclassify (x) == FP_NORMAL) 263 #endif 264 265 /* Return nonzero value if X is a NaN. We could use `fpclassify' but 266 we already have this functions `__isnan' and it is faster. */ 267 #if __GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__ 268 #define isnan(x) __builtin_isnan (x) 269 #elif defined __NO_LONG_DOUBLE_MATH 270 #define isnan(x) \ 271 (sizeof (x) == sizeof (float) ? __isnanf (x) : __isnan (x)) 272 #else 273 #define isnan(x) \ 274 (sizeof (x) == sizeof (float) \ 275 ? __isnanf (x) \ 276 : sizeof (x) == sizeof (double) \ 277 ? __isnan (x) : __isnanl (x)) 278 #endif 279 280 /* Return nonzero value if X is positive or negative infinity. */ 281 #if __GNUC_PREREQ (4,4) && !defined __SUPPORT_SNAN__ 282 #define isinf(x) __builtin_isinf_sign (x) 283 #elif defined __NO_LONG_DOUBLE_MATH 284 #define isinf(x) \ 285 (sizeof (x) == sizeof (float) ? __isinff (x) : __isinf (x)) 286 #else 287 #define isinf(x) \ 288 (sizeof (x) == sizeof (float) \ 289 ? __isinff (x) \ 290 : sizeof (x) == sizeof (double) \ 291 ? __isinf (x) : __isinfl (x)) 292 #endif 293 294 /* Bitmasks for the math_errhandling macro. */ 295 #define MATH_ERRNO 1 /* errno set by math functions. */ 296 #define MATH_ERREXCEPT 2 /* Exceptions raised by math functions. */ 297 298 /* By default all functions support both errno and exception handling. 299 In gcc's fast math mode and if inline functions are defined this 300 might not be true. */ 301 #ifndef __FAST_MATH__ 302 #define math_errhandling (MATH_ERRNO | MATH_ERREXCEPT) 303 #endif 304 305 #endif /* Use ISO C99. */ 306 307 #ifdef __USE_GNU 308 /* Return nonzero value if X is a signaling NaN. */ 309 #ifdef __NO_LONG_DOUBLE_MATH 310 #define issignaling(x) \ 311 (sizeof (x) == sizeof (float) ? __issignalingf (x) : __issignaling (x)) 312 #else 313 #define issignaling(x) \ 314 (sizeof (x) == sizeof (float) \ 315 ? __issignalingf (x) \ 316 : sizeof (x) == sizeof (double) \ 317 ? __issignaling (x) : __issignalingl (x)) 318 #endif 319 #endif /* Use GNU. */ 320 321 #ifdef __USE_MISC 322 /* Support for various different standard error handling behaviors. */ 323 typedef enum { 324 _IEEE_ = -1, /* According to IEEE 754/IEEE 854. */ 325 _SVID_, /* According to System V, release 4. */ 326 _XOPEN_, /* Nowadays also Unix98. */ 327 _POSIX_, 328 _ISOC_ /* Actually this is ISO C99. */ 329 } _LIB_VERSION_TYPE; 330 331 /* This variable can be changed at run-time to any of the values above to 332 affect floating point error handling behavior (it may also be necessary 333 to change the hardware FPU exception settings). */ 334 extern _LIB_VERSION_TYPE _LIB_VERSION; 335 #endif 336 337 #ifdef __USE_MISC 338 /* In SVID error handling, `matherr' is called with this description 339 of the exceptional condition. 340 341 We have a problem when using C++ since `exception' is a reserved 342 name in C++. */ 343 #ifdef __cplusplus 344 struct __exception 345 #else 346 struct exception 347 #endif 348 { 349 int type; 350 char *name; 351 double arg1; 352 double arg2; 353 double retval; 354 }; 355 356 #ifdef __cplusplus 357 extern int matherr(struct __exception *__exc) throw(); 358 #else 359 extern int matherr(struct exception *__exc); 360 #endif 361 362 #define X_TLOSS 1.41484755040568800000e+16 363 364 /* Types of exceptions in the `type' field. */ 365 #define DOMAIN 1 366 #define SING 2 367 #define OVERFLOW 3 368 #define UNDERFLOW 4 369 #define TLOSS 5 370 #define PLOSS 6 371 372 /* SVID mode specifies returning this large value instead of infinity. */ 373 #define HUGE 3.40282347e+38F 374 375 #else /* !Misc. */ 376 377 #ifdef __USE_XOPEN 378 /* X/Open wants another strange constant. */ 379 #define MAXFLOAT 3.40282347e+38F 380 #endif 381 382 #endif /* Misc. */ 383 384 /* Some useful constants. */ 385 #if defined __USE_MISC || defined __USE_XOPEN 386 #define M_E 2.7182818284590452354 /* e */ 387 #define M_LOG2E 1.4426950408889634074 /* log_2 e */ 388 #define M_LOG10E 0.43429448190325182765 /* log_10 e */ 389 #define M_LN2 0.69314718055994530942 /* log_e 2 */ 390 #define M_LN10 2.30258509299404568402 /* log_e 10 */ 391 #define M_PI 3.14159265358979323846 /* pi */ 392 #define M_PI_2 1.57079632679489661923 /* pi/2 */ 393 #define M_PI_4 0.78539816339744830962 /* pi/4 */ 394 #define M_1_PI 0.31830988618379067154 /* 1/pi */ 395 #define M_2_PI 0.63661977236758134308 /* 2/pi */ 396 #define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */ 397 #define M_SQRT2 1.41421356237309504880 /* sqrt(2) */ 398 #define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */ 399 #endif 400 401 /* The above constants are not adequate for computation using `long double's. 402 Therefore we provide as an extension constants with similar names as a 403 GNU extension. Provide enough digits for the 128-bit IEEE quad. */ 404 #ifdef __USE_GNU 405 #define M_El 2.718281828459045235360287471352662498L /* e */ 406 #define M_LOG2El 1.442695040888963407359924681001892137L /* log_2 e */ 407 #define M_LOG10El 0.434294481903251827651128918916605082L /* log_10 e */ 408 #define M_LN2l 0.693147180559945309417232121458176568L /* log_e 2 */ 409 #define M_LN10l 2.302585092994045684017991454684364208L /* log_e 10 */ 410 #define M_PIl 3.141592653589793238462643383279502884L /* pi */ 411 #define M_PI_2l 1.570796326794896619231321691639751442L /* pi/2 */ 412 #define M_PI_4l 0.785398163397448309615660845819875721L /* pi/4 */ 413 #define M_1_PIl 0.318309886183790671537767526745028724L /* 1/pi */ 414 #define M_2_PIl 0.636619772367581343075535053490057448L /* 2/pi */ 415 #define M_2_SQRTPIl 1.128379167095512573896158903121545172L /* 2/sqrt(pi) */ 416 #define M_SQRT2l 1.414213562373095048801688724209698079L /* sqrt(2) */ 417 #define M_SQRT1_2l 0.707106781186547524400844362104849039L /* 1/sqrt(2) */ 418 #endif 419 420 /* When compiling in strict ISO C compatible mode we must not use the 421 inline functions since they, among other things, do not set the 422 `errno' variable correctly. */ 423 #if defined __STRICT_ANSI__ && !defined __NO_MATH_INLINES 424 #define __NO_MATH_INLINES 1 425 #endif 426 427 #if defined __USE_ISOC99 && __GNUC_PREREQ(2,97) 428 /* ISO C99 defines some macros to compare number while taking care for 429 unordered numbers. Many FPUs provide special instructions to support 430 these operations. Generic support in GCC for these as builtins went 431 in before 3.0.0, but not all cpus added their patterns. We define 432 versions that use the builtins here, and <bits/mathinline.h> will 433 undef/redefine as appropriate for the specific GCC version in use. */ 434 #define isgreater(x, y) __builtin_isgreater(x, y) 435 #define isgreaterequal(x, y) __builtin_isgreaterequal(x, y) 436 #define isless(x, y) __builtin_isless(x, y) 437 #define islessequal(x, y) __builtin_islessequal(x, y) 438 #define islessgreater(x, y) __builtin_islessgreater(x, y) 439 #define isunordered(u, v) __builtin_isunordered(u, v) 440 #endif 441 442 /* Get machine-dependent inline versions (if there are any). */ 443 #ifdef __USE_EXTERN_INLINES 444 #include <bits/mathinline.h> 445 #endif 446 447 /* Define special entry points to use when the compiler got told to 448 only expect finite results. */ 449 #if defined __FINITE_MATH_ONLY__ && __FINITE_MATH_ONLY__ > 0 450 #include <bits/math-finite.h> 451 #endif 452 453 #ifdef __USE_ISOC99 454 /* If we've still got undefined comparison macros, provide defaults. */ 455 456 /* Return nonzero value if X is greater than Y. */ 457 #ifndef isgreater 458 #define isgreater(x, y) \ 459 (__extension__ \ 460 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 461 !isunordered (__x, __y) && __x > __y; })) 462 #endif 463 464 /* Return nonzero value if X is greater than or equal to Y. */ 465 #ifndef isgreaterequal 466 #define isgreaterequal(x, y) \ 467 (__extension__ \ 468 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 469 !isunordered (__x, __y) && __x >= __y; })) 470 #endif 471 472 /* Return nonzero value if X is less than Y. */ 473 #ifndef isless 474 #define isless(x, y) \ 475 (__extension__ \ 476 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 477 !isunordered (__x, __y) && __x < __y; })) 478 #endif 479 480 /* Return nonzero value if X is less than or equal to Y. */ 481 #ifndef islessequal 482 #define islessequal(x, y) \ 483 (__extension__ \ 484 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 485 !isunordered (__x, __y) && __x <= __y; })) 486 #endif 487 488 /* Return nonzero value if either X is less than Y or Y is less than X. */ 489 #ifndef islessgreater 490 #define islessgreater(x, y) \ 491 (__extension__ \ 492 ({ __typeof__(x) __x = (x); __typeof__(y) __y = (y); \ 493 !isunordered (__x, __y) && (__x < __y || __y < __x); })) 494 #endif 495 496 /* Return nonzero value if arguments are unordered. */ 497 #ifndef isunordered 498 #define isunordered(u, v) \ 499 (__extension__ \ 500 ({ __typeof__(u) __u = (u); __typeof__(v) __v = (v); \ 501 fpclassify (__u) == FP_NAN || fpclassify (__v) == FP_NAN; })) 502 #endif 503 504 #endif 505 506 __END_DECLS 507 #endif /* math.h */