17#ifndef OPENLIBM_MATH_H
18#define OPENLIBM_MATH_H
22#include "../inc/openlibm_defs.h"
28#if (defined(_WIN32) || defined (_MSC_VER)) && !defined(__WIN32__)
46 unsigned char __uc[
sizeof(float)];
54 unsigned char __uc[8];
59 unsigned char __uc[
sizeof(float)];
78#if !defined(_MSC_BUILD) && !defined(__ARM_ARCH_ISA_THUMB)
79#define __MATH_BUILTIN_CONSTANTS
81#define __MATH_BUILTIN_RELOPS
82#ifndef __ISO_C_VISIBLE
83#define __ISO_C_VISIBLE 1999
88#ifdef __MATH_BUILTIN_CONSTANTS
89#define HUGE_VAL __builtin_huge_val()
91#define HUGE_VAL (__infinity.__ud)
96#if __ISO_C_VISIBLE >= 1999
98#define FP_ILOGB0 (-INT_MAX)
99#define FP_ILOGBNAN INT_MAX
101#ifdef __MATH_BUILTIN_CONSTANTS
102#define HUGE_VALF __builtin_huge_valf()
103#define HUGE_VALL __builtin_huge_vall()
104#define INFINITY __builtin_inff()
105#define NAN __builtin_nanf("")
107#define HUGE_VALF (float)HUGE_VAL
108#define HUGE_VALL (long double)HUGE_VAL
109#define INFINITY HUGE_VALF
110#define NAN (__nan.__uf)
114#define MATH_ERREXCEPT 2
115#define math_errhandling MATH_ERREXCEPT
116#define FP_FAST_FMAF 1
119#define FP_FAST_FMAL 1
123#define FP_INFINITE 0x01
125#define FP_NORMAL 0x04
126#define FP_SUBNORMAL 0x08
130#define c_fpclassify(x) \
131 ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \
134#define c_isfinite(x) \
135 ((sizeof (x) == sizeof (float)) ? __isfinitef(x) \
138 ((sizeof (x) == sizeof (float)) ? __isinff(x) \
141 ((sizeof (x) == sizeof (float)) ? __isnanf(x) \
143#define c_isnormal(x) \
144 ((sizeof (x) == sizeof (float)) ? __isnormalf(x) \
147#ifdef __MATH_BUILTIN_RELOPS
148#define isgreater(x, y) __builtin_isgreater((x), (y))
149#define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y))
150#define isless(x, y) __builtin_isless((x), (y))
151#define islessequal(x, y) __builtin_islessequal((x), (y))
152#define islessgreater(x, y) __builtin_islessgreater((x), (y))
153#define isunordered(x, y) __builtin_isunordered((x), (y))
155#define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
156#define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
157#define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
158#define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
159#define islessgreater(x, y) (!isunordered((x), (y)) && \
160 ((x) > (y) || (y) > (x)))
161#define isunordered(x, y) (isnan(x) || isnan(y))
165 ((sizeof (x) == sizeof (float)) ? __signbitf(x) \
176#if __BSD_VISIBLE || __XSI_VISIBLE
177#define M_E 2.7182818284590452354
178#define M_LOG2E 1.4426950408889634074
179#define M_LOG10E 0.43429448190325182765
180#define M_LN2 0.69314718055994530942
181#define M_LN10 2.30258509299404568402
182#define M_PI 3.14159265358979323846
183#define M_PI_2 1.57079632679489661923
184#define M_PI_4 0.78539816339744830962
185#define M_1_PI 0.31830988618379067154
186#define M_2_PI 0.63661977236758134308
187#define M_2_SQRTPI 1.12837916709551257390
188#define M_SQRT2 1.41421356237309504880
189#define M_SQRT1_2 0.70710678118654752440
191#define MAXFLOAT ((float)3.40282346638528860e+38)
193#ifndef OPENLIBM_ONLY_THREAD_SAFE
213#if defined(__cplusplus)
264#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE
283#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999
292#if __ISO_C_VISIBLE >= 1999
345#if defined(__cplusplus)
int __fpclassifyd(double) __pure2
int __isfinitef(float) __pure2
float c_fabsf(float) __pure2
double c_frexp(double, int *)
float c_hypotf(float, float)
int __isnanf(float) __pure2
double c_remquo(double, double, int *)
float c_copysignf(float, float) __pure2
double c_ldexp(double, int)
double c_modf(double, double *)
float c_atan2f(float, float)
double c_fabs(double) __pure2
int c_ilogb(double) __pure2
double c_nan(const char *) __pure2
double c_nextafter(double, double)
int __signbitf(float) __pure2
const union __nan_un __nan
float c_fmodf(float, float)
float c_scalbnf(float, int)
int c_ilogbf(float) __pure2
float c_fdimf(float, float)
double c_hypot(double, double)
double c_pow(double, double)
double c_atan2(double, double)
double c_scalbn(double, int)
int __signbit(double) __pure2
int __isnan(double) __pure2
float c_ldexpf(float, int)
const union __infinity_un __infinity
float c_modff(float, float *)
int __isnormal(double) __pure2
double c_fdim(double, double)
double c_scalbln(double, long)
int __isfinite(double) __pure2
int __isinf(double) __pure2
float c_remquof(float, float, int *)
float c_nanf(const char *) __pure2
float c_remainderf(float, float)
int __isinff(float) __pure2
float c_scalblnf(float, long)
int __isnormalf(float) __pure2
float c_powf(float, float)
int __fpclassifyf(float) __pure2
float c_frexpf(float, int *)
double c_remainder(double, double)
float c_nextafterf(float, float)
double c_copysign(double, double) __pure2
double c_fmod(double, double)
unsigned char __uc[sizeof(float)]