2000-02-18 03:39:52 +08:00
|
|
|
#ifndef _MATH_H_
|
2007-07-12 02:09:08 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#define _MATH_H_
|
|
|
|
|
|
|
|
#include <sys/reent.h>
|
|
|
|
#include <machine/ieeefp.h>
|
|
|
|
#include "_ansi.h"
|
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_BEGIN_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
union __dmath
|
|
|
|
{
|
2002-06-25 04:03:38 +08:00
|
|
|
__ULong i[2];
|
2000-02-18 03:39:52 +08:00
|
|
|
double d;
|
|
|
|
};
|
2007-05-17 03:59:40 +08:00
|
|
|
|
2005-10-21 05:42:33 +08:00
|
|
|
union __fmath
|
|
|
|
{
|
|
|
|
__ULong i[1];
|
|
|
|
float f;
|
|
|
|
};
|
2007-05-17 03:59:40 +08:00
|
|
|
|
2005-10-15 05:11:39 +08:00
|
|
|
union __ldmath
|
|
|
|
{
|
|
|
|
__ULong i[4];
|
|
|
|
_LONG_DOUBLE ld;
|
|
|
|
};
|
|
|
|
|
2007-09-07 23:30:59 +08:00
|
|
|
/* Natural log of 2 */
|
|
|
|
#define _M_LOG2_E 0.693147180559945309417
|
2007-09-07 03:51:46 +08:00
|
|
|
|
2005-10-21 05:42:33 +08:00
|
|
|
#if defined(__GNUC__) && \
|
|
|
|
( (__GNUC__ >= 4) || \
|
|
|
|
( (__GNUC__ >= 3) && defined(__GNUC_MINOR__) && (__GNUC_MINOR__ >= 3) ) )
|
|
|
|
|
|
|
|
/* gcc >= 3.3 implicitly defines builtins for HUGE_VALx values. */
|
|
|
|
|
2007-05-17 03:59:40 +08:00
|
|
|
# ifndef HUGE_VAL
|
|
|
|
# define HUGE_VAL (__builtin_huge_val())
|
|
|
|
# endif
|
2005-10-21 05:42:33 +08:00
|
|
|
|
2007-05-17 03:59:40 +08:00
|
|
|
# ifndef HUGE_VALF
|
|
|
|
# define HUGE_VALF (__builtin_huge_valf())
|
|
|
|
# endif
|
2005-10-21 05:42:33 +08:00
|
|
|
|
2007-05-17 03:59:40 +08:00
|
|
|
# ifndef HUGE_VALL
|
|
|
|
# define HUGE_VALL (__builtin_huge_vall())
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef INFINITY
|
|
|
|
# define INFINITY (__builtin_inff())
|
|
|
|
# endif
|
|
|
|
|
|
|
|
# ifndef NAN
|
|
|
|
# define NAN (__builtin_nanf(""))
|
|
|
|
# endif
|
2005-10-21 05:42:33 +08:00
|
|
|
|
|
|
|
#else /* !gcc >= 3.3 */
|
|
|
|
|
2007-05-17 03:59:40 +08:00
|
|
|
/* No builtins. Use floating-point unions instead. Declare as an array
|
|
|
|
without bounds so no matter what small data support a port and/or
|
|
|
|
library has, the reference will be via the general method for accessing
|
2005-10-21 05:42:33 +08:00
|
|
|
globals. */
|
|
|
|
|
|
|
|
#ifndef HUGE_VAL
|
|
|
|
extern __IMPORT const union __dmath __infinity[];
|
|
|
|
#define HUGE_VAL (__infinity[0].d)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HUGE_VALF
|
|
|
|
extern __IMPORT const union __fmath __infinityf[];
|
|
|
|
#define HUGE_VALF (__infinityf[0].f)
|
|
|
|
#endif
|
2000-07-29 00:27:55 +08:00
|
|
|
|
2005-10-21 05:42:33 +08:00
|
|
|
#ifndef HUGE_VALL
|
|
|
|
extern __IMPORT const union __ldmath __infinityld[];
|
|
|
|
#define HUGE_VALL (__infinityld[0].ld)
|
|
|
|
#endif
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2005-10-21 05:42:33 +08:00
|
|
|
#endif /* !gcc >= 3.3 */
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/* Reentrant ANSI C functions. */
|
|
|
|
|
|
|
|
#ifndef __math_68881
|
|
|
|
extern double atan _PARAMS((double));
|
|
|
|
extern double cos _PARAMS((double));
|
|
|
|
extern double sin _PARAMS((double));
|
|
|
|
extern double tan _PARAMS((double));
|
|
|
|
extern double tanh _PARAMS((double));
|
|
|
|
extern double frexp _PARAMS((double, int *));
|
|
|
|
extern double modf _PARAMS((double, double *));
|
|
|
|
extern double ceil _PARAMS((double));
|
|
|
|
extern double fabs _PARAMS((double));
|
|
|
|
extern double floor _PARAMS((double));
|
|
|
|
#endif /* ! defined (__math_68881) */
|
|
|
|
|
|
|
|
/* Non reentrant ANSI C functions. */
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
2009-04-04 01:42:27 +08:00
|
|
|
#ifndef __math_68881
|
2000-02-18 03:39:52 +08:00
|
|
|
extern double acos _PARAMS((double));
|
|
|
|
extern double asin _PARAMS((double));
|
|
|
|
extern double atan2 _PARAMS((double, double));
|
|
|
|
extern double cosh _PARAMS((double));
|
|
|
|
extern double sinh _PARAMS((double));
|
|
|
|
extern double exp _PARAMS((double));
|
|
|
|
extern double ldexp _PARAMS((double, int));
|
|
|
|
extern double log _PARAMS((double));
|
|
|
|
extern double log10 _PARAMS((double));
|
|
|
|
extern double pow _PARAMS((double, double));
|
|
|
|
extern double sqrt _PARAMS((double));
|
|
|
|
extern double fmod _PARAMS((double, double));
|
|
|
|
#endif /* ! defined (__math_68881) */
|
|
|
|
#endif /* ! defined (_REENT_ONLY) */
|
|
|
|
|
2007-07-12 02:09:08 +08:00
|
|
|
#if !defined(__STRICT_ANSI__) || defined(__cplusplus) || __STDC_VERSION__ >= 199901L
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2002-06-08 05:59:57 +08:00
|
|
|
/* ISO C99 types and macros. */
|
|
|
|
|
|
|
|
#ifndef FLT_EVAL_METHOD
|
|
|
|
#define FLT_EVAL_METHOD 0
|
|
|
|
typedef float float_t;
|
|
|
|
typedef double double_t;
|
|
|
|
#endif /* FLT_EVAL_METHOD */
|
|
|
|
|
|
|
|
#define FP_NAN 0
|
|
|
|
#define FP_INFINITE 1
|
|
|
|
#define FP_ZERO 2
|
|
|
|
#define FP_SUBNORMAL 3
|
|
|
|
#define FP_NORMAL 4
|
|
|
|
|
2007-05-17 03:59:40 +08:00
|
|
|
#ifndef FP_ILOGB0
|
|
|
|
# define FP_ILOGB0 (-INT_MAX)
|
|
|
|
#endif
|
|
|
|
#ifndef FP_ILOGBNAN
|
|
|
|
# define FP_ILOGBNAN INT_MAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MATH_ERRNO
|
|
|
|
# define MATH_ERRNO 1
|
|
|
|
#endif
|
|
|
|
#ifndef MATH_ERREXCEPT
|
|
|
|
# define MATH_ERREXCEPT 2
|
|
|
|
#endif
|
|
|
|
#ifndef math_errhandling
|
|
|
|
# define math_errhandling MATH_ERRNO
|
|
|
|
#endif
|
|
|
|
|
2006-02-28 07:51:28 +08:00
|
|
|
extern int __isinff (float x);
|
|
|
|
extern int __isinfd (double x);
|
|
|
|
extern int __isnanf (float x);
|
|
|
|
extern int __isnand (double x);
|
2002-06-08 05:59:57 +08:00
|
|
|
extern int __fpclassifyf (float x);
|
|
|
|
extern int __fpclassifyd (double x);
|
2003-08-14 01:36:10 +08:00
|
|
|
extern int __signbitf (float x);
|
|
|
|
extern int __signbitd (double x);
|
2002-06-08 05:59:57 +08:00
|
|
|
|
|
|
|
#define fpclassify(x) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); \
|
|
|
|
(sizeof (__x) == sizeof (float)) ? __fpclassifyf(__x) : __fpclassifyd(__x);}))
|
|
|
|
|
2007-04-27 03:23:37 +08:00
|
|
|
#ifndef isfinite
|
2005-02-08 05:04:22 +08:00
|
|
|
#define isfinite(y) \
|
|
|
|
(__extension__ ({__typeof__(y) __y = (y); \
|
|
|
|
fpclassify(__y) != FP_INFINITE && fpclassify(__y) != FP_NAN;}))
|
2007-04-27 03:23:37 +08:00
|
|
|
#endif
|
2006-02-28 07:51:28 +08:00
|
|
|
|
|
|
|
/* Note: isinf and isnan were once functions in newlib that took double
|
|
|
|
* arguments. C99 specifies that these names are reserved for macros
|
|
|
|
* supporting multiple floating point types. Thus, they are
|
|
|
|
* now defined as macros. Implementations of the old functions
|
|
|
|
* taking double arguments still exist for compatibility purposes. */
|
2007-04-27 03:23:37 +08:00
|
|
|
#ifndef isinf
|
2006-02-28 07:51:28 +08:00
|
|
|
#define isinf(x) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); \
|
|
|
|
(sizeof (__x) == sizeof (float)) ? __isinff(__x) : __isinfd(__x);}))
|
2007-04-27 03:23:37 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef isnan
|
2006-02-28 07:51:28 +08:00
|
|
|
#define isnan(x) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); \
|
|
|
|
(sizeof (__x) == sizeof (float)) ? __isnanf(__x) : __isnand(__x);}))
|
2007-04-27 03:23:37 +08:00
|
|
|
#endif
|
|
|
|
|
2006-02-28 07:51:28 +08:00
|
|
|
#define isnormal(y) (fpclassify(y) == FP_NORMAL)
|
2002-06-08 05:59:57 +08:00
|
|
|
#define signbit(x) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); \
|
|
|
|
(sizeof(__x) == sizeof(float)) ? __signbitf(__x) : __signbitd(__x);}))
|
|
|
|
|
|
|
|
#define isgreater(x,y) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
|
|
|
|
!isunordered(__x,__y) && (__x > __y);}))
|
|
|
|
#define isgreaterequal(x,y) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
|
|
|
|
!isunordered(__x,__y) && (__x >= __y);}))
|
|
|
|
#define isless(x,y) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
|
|
|
|
!isunordered(__x,__y) && (__x < __y);}))
|
|
|
|
#define islessequal(x,y) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
|
|
|
|
!isunordered(__x,__y) && (__x <= __y);}))
|
|
|
|
#define islessgreater(x,y) \
|
|
|
|
(__extension__ ({__typeof__(x) __x = (x); __typeof__(y) __y = (y); \
|
|
|
|
!isunordered(__x,__y) && (__x < __y || __x > __y);}))
|
|
|
|
|
2005-02-08 05:04:22 +08:00
|
|
|
#define isunordered(a,b) \
|
|
|
|
(__extension__ ({__typeof__(a) __a = (a); __typeof__(b) __b = (b); \
|
|
|
|
fpclassify(__a) == FP_NAN || fpclassify(__b) == FP_NAN;}))
|
2002-06-08 05:59:57 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
/* Non ANSI double precision functions. */
|
|
|
|
|
|
|
|
extern double infinity _PARAMS((void));
|
2003-07-10 01:52:31 +08:00
|
|
|
extern double nan _PARAMS((const char *));
|
2000-02-18 03:39:52 +08:00
|
|
|
extern int finite _PARAMS((double));
|
|
|
|
extern double copysign _PARAMS((double, double));
|
|
|
|
extern int ilogb _PARAMS((double));
|
|
|
|
|
|
|
|
extern double asinh _PARAMS((double));
|
|
|
|
extern double cbrt _PARAMS((double));
|
|
|
|
extern double nextafter _PARAMS((double, double));
|
|
|
|
extern double rint _PARAMS((double));
|
|
|
|
extern double scalbn _PARAMS((double, int));
|
|
|
|
|
2002-06-08 05:59:57 +08:00
|
|
|
extern double exp2 _PARAMS((double));
|
|
|
|
extern double scalbln _PARAMS((double, long int));
|
|
|
|
extern double tgamma _PARAMS((double));
|
|
|
|
extern double nearbyint _PARAMS((double));
|
|
|
|
extern long int lrint _PARAMS((double));
|
2008-04-24 07:10:54 +08:00
|
|
|
extern _LONG_LONG_TYPE int llrint _PARAMS((double));
|
2002-06-08 05:59:57 +08:00
|
|
|
extern double round _PARAMS((double));
|
|
|
|
extern long int lround _PARAMS((double));
|
2009-03-25 Craig Howland <howland@LGSInnovations.com>
* libc/include/math.h: (llround, llroundf): Declare.
* libm/common/s_llround.c: New file, implementing llround().
* libm/common/sf_llround.c: New file, implementing llroundf().
* libm/common/sf_lround.c: Remove spurious cast in _DOUBLE_IS_32BITS
version of function.
* libm/common/sf_lrint.c: Ditto.
* libm/common/sf_logb.c: Corrected return for subnormal argument
by replacing existing function with a version created from sf_ilogb.c.
* libm/common/s_logb.c: Ditto, except starting point s_ilogb.c. Also
added documentation for logb() and logbf().
* libm/common/s_signbit.c: Add signbit() documentation.
* libm/common/s_log2.c: Update return values to match what w_log2.c has,
since log2 uses log(); add note about being derived instead of direct.
* libm/common/sf_fma.c: Add casts to attempt to get correct results,
as well as comments pointing out problems with the implementation.
* libm/common/s_fma.c: Add fma() and fmaf() documentation.
* libm/common/sf_remquo.c: Incorrect quotient returns for large values
corrected by discarding existing function and replacing with Sun
verion, with some enhancements.
* libm/common/s_remquo.c: Ditto. Add remquo() and remquof()
documentation.
* libm/common/s_fmax.c: Add fmax() and fmaxf() documentation.
* libm/common/s_fmin.c: Add fmin() and fminf() documentation.
* libm/common/s_fdim.c: Return NAN for NAN arg, add fdim() and fdimf()
documentation.
* libm/common/sf_fdim.c: Return NAN for NAN arg, HUGE_VALF for inf arg.
* libm/common/s_trunc.c: Add trunc() and truncf() documentation.
* libm/common/s_rint.c: Add rint() and rintf() documentation.
* libm/common/s_round.c: Add round() and roundf() documentation.
* libm/common/s_scalbn.c: Add scalbln() and scalblnf() documentation.
* libm/common/s_infinity.c: Add infinity() and infinityf()
documentation.
* libm/common/s_lround.c: Add lround(), lroundf(), llround(), and
llroundf() documentation.
* libm/common/s_lrint.c: Add lrint(), lrintf(), llrint(), and llrintf()
documentation.
* libm/common/isgreater.c: New file for documenting math.h function-like
macros isgreater(), isgreaterequal(), isless(), islessequal(),
islessgreater(), and isunordered().
* libm/common/s_isnan.c: Add documentation for function-like macros
fpclassify(), isfinite(), isinf(), isnan(), and isnormal().
* libm/common/s_nearbyint.c: Add nearbyint() and nearbyintf()
documentation.
* libm/common/Makefile.am: Add s_llround.c (src); sf_llround.c (fsrc);
s_fdim.def, s_fma.def, s_fmax.def, s_fmin.def,
s_logb.def, s_lrint.def, s_lround.def, s_nearbyint.def, s_remquo.def,
s_rint.def, s_round.def, s_signbit.def, s_trunc.def, and
isgreater.def (chobj);
re-name all existing chew files (chobj) to match source file base
names (put in underscores), delete all special targets for chew files
(leaving all to be generated by rule).
* libm/common/Makefile.in: regenerate.
* libm/math/w_exp2.c: Add "base 2" to documentation description (and
delete TRAD_SYNOPSIS).
* libm/math/w_gamma.c: Add tgamma() and tgammaf() documentation, along
with some history behind the function names.
* libm/math/math.tex: Add includes for newly-added documentation (see
.def additions to common/Makefile.am and math/Makefile.am in this
ChangeLog list), adjusted existing .def file names to match source file
base names (added underscores); add mention of HUGE_VALF; rename
"Version of library" section to "Error Handling" and add some text
about floating-point exception; added section "Standards Compliance And
Portability".
* libm/math/Makefile.am: Add w_exp2.def (chobj);
re-name all existing chew files (chobj) to match source file base
names, delete all special targets for chew files (leaving all to be
generated by rule).
* libm/math/Makefile.in: regenerated
* doc/makedoc.c: Change silent ignoring of commands < 5 characters
to a failure when reading macro file for commands < 4 characters;
add -v (verbose) option for printing some debugging information;
get rid of spurious translation of "@*" to "*" (no source files used @*,
so no existing doc pages were affected); clean up some compiler
warnings.
* doc/doc.str: add BUGS and SEEALSO sections (to match texi2pod.pl
which has them); Remove ITEM command (redundant with makedoc built-in
"o", not used in any present source file so nothing is lost, anyway).
* HOWTO: New file to hold information for maintainers regarding how
to do things. Initial sections on documentation and ELIX levels.
2009-03-26 03:13:24 +08:00
|
|
|
extern long long int llround _PARAMS((double));
|
2002-06-08 05:59:57 +08:00
|
|
|
extern double trunc _PARAMS((double));
|
|
|
|
extern double remquo _PARAMS((double, double, int *));
|
|
|
|
extern double fdim _PARAMS((double, double));
|
|
|
|
extern double fmax _PARAMS((double, double));
|
|
|
|
extern double fmin _PARAMS((double, double));
|
|
|
|
extern double fma _PARAMS((double, double, double));
|
2007-05-18 02:50:57 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifndef __math_68881
|
|
|
|
extern double log1p _PARAMS((double));
|
|
|
|
extern double expm1 _PARAMS((double));
|
|
|
|
#endif /* ! defined (__math_68881) */
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
extern double acosh _PARAMS((double));
|
|
|
|
extern double atanh _PARAMS((double));
|
|
|
|
extern double remainder _PARAMS((double, double));
|
|
|
|
extern double gamma _PARAMS((double));
|
|
|
|
extern double lgamma _PARAMS((double));
|
|
|
|
extern double erf _PARAMS((double));
|
|
|
|
extern double erfc _PARAMS((double));
|
2009-03-19 02:11:18 +08:00
|
|
|
extern double log2 _PARAMS((double));
|
2007-09-07 23:30:59 +08:00
|
|
|
#define log2(x) (log (x) / _M_LOG2_E)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
#ifndef __math_68881
|
|
|
|
extern double hypot _PARAMS((double, double));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ! defined (_REENT_ONLY) */
|
|
|
|
|
|
|
|
/* Single precision versions of ANSI functions. */
|
|
|
|
|
|
|
|
extern float atanf _PARAMS((float));
|
|
|
|
extern float cosf _PARAMS((float));
|
|
|
|
extern float sinf _PARAMS((float));
|
|
|
|
extern float tanf _PARAMS((float));
|
|
|
|
extern float tanhf _PARAMS((float));
|
|
|
|
extern float frexpf _PARAMS((float, int *));
|
|
|
|
extern float modff _PARAMS((float, float *));
|
|
|
|
extern float ceilf _PARAMS((float));
|
|
|
|
extern float fabsf _PARAMS((float));
|
|
|
|
extern float floorf _PARAMS((float));
|
|
|
|
|
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
extern float acosf _PARAMS((float));
|
|
|
|
extern float asinf _PARAMS((float));
|
|
|
|
extern float atan2f _PARAMS((float, float));
|
|
|
|
extern float coshf _PARAMS((float));
|
|
|
|
extern float sinhf _PARAMS((float));
|
|
|
|
extern float expf _PARAMS((float));
|
|
|
|
extern float ldexpf _PARAMS((float, int));
|
|
|
|
extern float logf _PARAMS((float));
|
|
|
|
extern float log10f _PARAMS((float));
|
|
|
|
extern float powf _PARAMS((float, float));
|
|
|
|
extern float sqrtf _PARAMS((float));
|
|
|
|
extern float fmodf _PARAMS((float, float));
|
|
|
|
#endif /* ! defined (_REENT_ONLY) */
|
|
|
|
|
|
|
|
/* Other single precision functions. */
|
|
|
|
|
2002-06-08 05:59:57 +08:00
|
|
|
extern float exp2f _PARAMS((float));
|
|
|
|
extern float scalblnf _PARAMS((float, long int));
|
|
|
|
extern float tgammaf _PARAMS((float));
|
|
|
|
extern float nearbyintf _PARAMS((float));
|
|
|
|
extern long int lrintf _PARAMS((float));
|
2008-04-24 07:10:54 +08:00
|
|
|
extern _LONG_LONG_TYPE llrintf _PARAMS((float));
|
2002-06-08 05:59:57 +08:00
|
|
|
extern float roundf _PARAMS((float));
|
|
|
|
extern long int lroundf _PARAMS((float));
|
2009-03-25 Craig Howland <howland@LGSInnovations.com>
* libc/include/math.h: (llround, llroundf): Declare.
* libm/common/s_llround.c: New file, implementing llround().
* libm/common/sf_llround.c: New file, implementing llroundf().
* libm/common/sf_lround.c: Remove spurious cast in _DOUBLE_IS_32BITS
version of function.
* libm/common/sf_lrint.c: Ditto.
* libm/common/sf_logb.c: Corrected return for subnormal argument
by replacing existing function with a version created from sf_ilogb.c.
* libm/common/s_logb.c: Ditto, except starting point s_ilogb.c. Also
added documentation for logb() and logbf().
* libm/common/s_signbit.c: Add signbit() documentation.
* libm/common/s_log2.c: Update return values to match what w_log2.c has,
since log2 uses log(); add note about being derived instead of direct.
* libm/common/sf_fma.c: Add casts to attempt to get correct results,
as well as comments pointing out problems with the implementation.
* libm/common/s_fma.c: Add fma() and fmaf() documentation.
* libm/common/sf_remquo.c: Incorrect quotient returns for large values
corrected by discarding existing function and replacing with Sun
verion, with some enhancements.
* libm/common/s_remquo.c: Ditto. Add remquo() and remquof()
documentation.
* libm/common/s_fmax.c: Add fmax() and fmaxf() documentation.
* libm/common/s_fmin.c: Add fmin() and fminf() documentation.
* libm/common/s_fdim.c: Return NAN for NAN arg, add fdim() and fdimf()
documentation.
* libm/common/sf_fdim.c: Return NAN for NAN arg, HUGE_VALF for inf arg.
* libm/common/s_trunc.c: Add trunc() and truncf() documentation.
* libm/common/s_rint.c: Add rint() and rintf() documentation.
* libm/common/s_round.c: Add round() and roundf() documentation.
* libm/common/s_scalbn.c: Add scalbln() and scalblnf() documentation.
* libm/common/s_infinity.c: Add infinity() and infinityf()
documentation.
* libm/common/s_lround.c: Add lround(), lroundf(), llround(), and
llroundf() documentation.
* libm/common/s_lrint.c: Add lrint(), lrintf(), llrint(), and llrintf()
documentation.
* libm/common/isgreater.c: New file for documenting math.h function-like
macros isgreater(), isgreaterequal(), isless(), islessequal(),
islessgreater(), and isunordered().
* libm/common/s_isnan.c: Add documentation for function-like macros
fpclassify(), isfinite(), isinf(), isnan(), and isnormal().
* libm/common/s_nearbyint.c: Add nearbyint() and nearbyintf()
documentation.
* libm/common/Makefile.am: Add s_llround.c (src); sf_llround.c (fsrc);
s_fdim.def, s_fma.def, s_fmax.def, s_fmin.def,
s_logb.def, s_lrint.def, s_lround.def, s_nearbyint.def, s_remquo.def,
s_rint.def, s_round.def, s_signbit.def, s_trunc.def, and
isgreater.def (chobj);
re-name all existing chew files (chobj) to match source file base
names (put in underscores), delete all special targets for chew files
(leaving all to be generated by rule).
* libm/common/Makefile.in: regenerate.
* libm/math/w_exp2.c: Add "base 2" to documentation description (and
delete TRAD_SYNOPSIS).
* libm/math/w_gamma.c: Add tgamma() and tgammaf() documentation, along
with some history behind the function names.
* libm/math/math.tex: Add includes for newly-added documentation (see
.def additions to common/Makefile.am and math/Makefile.am in this
ChangeLog list), adjusted existing .def file names to match source file
base names (added underscores); add mention of HUGE_VALF; rename
"Version of library" section to "Error Handling" and add some text
about floating-point exception; added section "Standards Compliance And
Portability".
* libm/math/Makefile.am: Add w_exp2.def (chobj);
re-name all existing chew files (chobj) to match source file base
names, delete all special targets for chew files (leaving all to be
generated by rule).
* libm/math/Makefile.in: regenerated
* doc/makedoc.c: Change silent ignoring of commands < 5 characters
to a failure when reading macro file for commands < 4 characters;
add -v (verbose) option for printing some debugging information;
get rid of spurious translation of "@*" to "*" (no source files used @*,
so no existing doc pages were affected); clean up some compiler
warnings.
* doc/doc.str: add BUGS and SEEALSO sections (to match texi2pod.pl
which has them); Remove ITEM command (redundant with makedoc built-in
"o", not used in any present source file so nothing is lost, anyway).
* HOWTO: New file to hold information for maintainers regarding how
to do things. Initial sections on documentation and ELIX levels.
2009-03-26 03:13:24 +08:00
|
|
|
extern long long int llroundf _PARAMS((float));
|
2002-06-08 05:59:57 +08:00
|
|
|
extern float truncf _PARAMS((float));
|
|
|
|
extern float remquof _PARAMS((float, float, int *));
|
|
|
|
extern float fdimf _PARAMS((float, float));
|
|
|
|
extern float fmaxf _PARAMS((float, float));
|
|
|
|
extern float fminf _PARAMS((float, float));
|
|
|
|
extern float fmaf _PARAMS((float, float, float));
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
extern float infinityf _PARAMS((void));
|
2003-07-10 01:52:31 +08:00
|
|
|
extern float nanf _PARAMS((const char *));
|
2000-02-18 03:39:52 +08:00
|
|
|
extern int isnanf _PARAMS((float));
|
|
|
|
extern int isinff _PARAMS((float));
|
|
|
|
extern int finitef _PARAMS((float));
|
|
|
|
extern float copysignf _PARAMS((float, float));
|
|
|
|
extern int ilogbf _PARAMS((float));
|
|
|
|
|
|
|
|
extern float asinhf _PARAMS((float));
|
|
|
|
extern float cbrtf _PARAMS((float));
|
|
|
|
extern float nextafterf _PARAMS((float, float));
|
|
|
|
extern float rintf _PARAMS((float));
|
|
|
|
extern float scalbnf _PARAMS((float, int));
|
|
|
|
extern float log1pf _PARAMS((float));
|
|
|
|
extern float expm1f _PARAMS((float));
|
2007-05-18 02:50:57 +08:00
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
extern float acoshf _PARAMS((float));
|
|
|
|
extern float atanhf _PARAMS((float));
|
|
|
|
extern float remainderf _PARAMS((float, float));
|
|
|
|
extern float gammaf _PARAMS((float));
|
|
|
|
extern float lgammaf _PARAMS((float));
|
|
|
|
extern float erff _PARAMS((float));
|
|
|
|
extern float erfcf _PARAMS((float));
|
2009-03-19 02:11:18 +08:00
|
|
|
extern float log2f _PARAMS((float));
|
2007-09-07 23:30:59 +08:00
|
|
|
#define log2f(x) (logf (x) / (float) _M_LOG2_E)
|
2007-07-12 02:09:08 +08:00
|
|
|
extern float hypotf _PARAMS((float, float));
|
|
|
|
#endif /* ! defined (_REENT_ONLY) */
|
|
|
|
|
2007-12-19 Dave Korn <dave.korn@artimi.com>
Jeff Johnston <jjohnstn@redhhat.com>
* libc/include/_ansi.h: Add _LONG_LONG definition.
* libc/include/math.h (llrint, llrintf, rintl, lrintl, llrintl): Add
prototypes.
* libc/machine/i386/machine/fastmath.h: Add support for new i386
fast math versions of rint, lrint, and llrint family functions.
* libm/machine/i386/Makefile.am: Add new files.
* libm/machine/i386/Makefile.in: Regenerated.
* libm/machine/i386/f_llrint.c, libm/machine/i386/f_lrint.c,
libm/machine/i386/f_rint.c, libm/machine/i386/f_llrintf.c,
libm/machine/i386/f_lrintf.c, libm/machine/i386/f_rintf.c,
libm/machine/i386/f_llrintl.c, libm/machine/i386/f_lrintl.c,
libm/machine/i386/f_rintl.c: New files with fast math implementations.
2007-12-20 06:20:25 +08:00
|
|
|
/* Other long double precision functions. */
|
2009-04-04 01:42:27 +08:00
|
|
|
#ifdef __i386__
|
2007-12-19 Dave Korn <dave.korn@artimi.com>
Jeff Johnston <jjohnstn@redhhat.com>
* libc/include/_ansi.h: Add _LONG_LONG definition.
* libc/include/math.h (llrint, llrintf, rintl, lrintl, llrintl): Add
prototypes.
* libc/machine/i386/machine/fastmath.h: Add support for new i386
fast math versions of rint, lrint, and llrint family functions.
* libm/machine/i386/Makefile.am: Add new files.
* libm/machine/i386/Makefile.in: Regenerated.
* libm/machine/i386/f_llrint.c, libm/machine/i386/f_lrint.c,
libm/machine/i386/f_rint.c, libm/machine/i386/f_llrintf.c,
libm/machine/i386/f_lrintf.c, libm/machine/i386/f_rintf.c,
libm/machine/i386/f_llrintl.c, libm/machine/i386/f_lrintl.c,
libm/machine/i386/f_rintl.c: New files with fast math implementations.
2007-12-20 06:20:25 +08:00
|
|
|
extern _LONG_DOUBLE rintl _PARAMS((_LONG_DOUBLE));
|
|
|
|
extern long int lrintl _PARAMS((_LONG_DOUBLE));
|
2008-04-24 07:10:54 +08:00
|
|
|
extern _LONG_LONG_TYPE llrintl _PARAMS((_LONG_DOUBLE));
|
2009-04-04 01:42:27 +08:00
|
|
|
#endif /* __i386__ */
|
2007-12-19 Dave Korn <dave.korn@artimi.com>
Jeff Johnston <jjohnstn@redhhat.com>
* libc/include/_ansi.h: Add _LONG_LONG definition.
* libc/include/math.h (llrint, llrintf, rintl, lrintl, llrintl): Add
prototypes.
* libc/machine/i386/machine/fastmath.h: Add support for new i386
fast math versions of rint, lrint, and llrint family functions.
* libm/machine/i386/Makefile.am: Add new files.
* libm/machine/i386/Makefile.in: Regenerated.
* libm/machine/i386/f_llrint.c, libm/machine/i386/f_lrint.c,
libm/machine/i386/f_rint.c, libm/machine/i386/f_llrintf.c,
libm/machine/i386/f_lrintf.c, libm/machine/i386/f_rintf.c,
libm/machine/i386/f_llrintl.c, libm/machine/i386/f_lrintl.c,
libm/machine/i386/f_rintl.c: New files with fast math implementations.
2007-12-20 06:20:25 +08:00
|
|
|
|
2007-07-12 02:09:08 +08:00
|
|
|
#endif /* !defined (__STRICT_ANSI__) || defined(__cplusplus) || __STDC_VERSION__ >= 199901L */
|
|
|
|
|
|
|
|
#if !defined (__STRICT_ANSI__) || defined(__cplusplus)
|
|
|
|
|
|
|
|
extern double cabs();
|
|
|
|
extern double drem _PARAMS((double, double));
|
|
|
|
extern void sincos _PARAMS((double, double *, double *));
|
|
|
|
extern double gamma_r _PARAMS((double, int *));
|
|
|
|
extern double lgamma_r _PARAMS((double, int *));
|
|
|
|
|
|
|
|
extern double y0 _PARAMS((double));
|
|
|
|
extern double y1 _PARAMS((double));
|
|
|
|
extern double yn _PARAMS((int, double));
|
|
|
|
extern double j0 _PARAMS((double));
|
|
|
|
extern double j1 _PARAMS((double));
|
|
|
|
extern double jn _PARAMS((int, double));
|
|
|
|
|
|
|
|
extern float cabsf();
|
|
|
|
extern float dremf _PARAMS((float, float));
|
|
|
|
extern void sincosf _PARAMS((float, float *, float *));
|
|
|
|
extern float gammaf_r _PARAMS((float, int *));
|
|
|
|
extern float lgammaf_r _PARAMS((float, int *));
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
extern float y0f _PARAMS((float));
|
|
|
|
extern float y1f _PARAMS((float));
|
|
|
|
extern float ynf _PARAMS((int, float));
|
|
|
|
extern float j0f _PARAMS((float));
|
|
|
|
extern float j1f _PARAMS((float));
|
|
|
|
extern float jnf _PARAMS((int, float));
|
|
|
|
|
2007-07-12 02:09:08 +08:00
|
|
|
/* GNU extensions */
|
|
|
|
# ifndef exp10
|
|
|
|
extern double exp10 _PARAMS((double));
|
|
|
|
# endif
|
|
|
|
# ifndef pow10
|
|
|
|
extern double pow10 _PARAMS((double));
|
|
|
|
# endif
|
|
|
|
# ifndef exp10f
|
|
|
|
extern float exp10f _PARAMS((float));
|
|
|
|
# endif
|
|
|
|
# ifndef pow10f
|
|
|
|
extern float pow10f _PARAMS((float));
|
|
|
|
# endif
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2007-07-12 02:09:08 +08:00
|
|
|
#endif /* !defined (__STRICT_ANSI__) || defined(__cplusplus) */
|
|
|
|
|
|
|
|
#ifndef __STRICT_ANSI__
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/* The gamma functions use a global variable, signgam. */
|
2001-01-30 06:40:50 +08:00
|
|
|
#ifndef _REENT_ONLY
|
|
|
|
#define signgam (*__signgam())
|
|
|
|
extern int *__signgam _PARAMS((void));
|
|
|
|
#endif /* ! defined (_REENT_ONLY) */
|
2000-02-18 03:39:52 +08:00
|
|
|
|
2002-02-03 17:24:18 +08:00
|
|
|
#define __signgam_r(ptr) _REENT_SIGNGAM(ptr)
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
/* The exception structure passed to the matherr routine. */
|
2006-10-26 02:46:40 +08:00
|
|
|
/* We have a problem when using C++ since `exception' is a reserved
|
|
|
|
name in C++. */
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifdef __cplusplus
|
2007-05-17 03:59:40 +08:00
|
|
|
struct __exception
|
2000-02-18 03:39:52 +08:00
|
|
|
#else
|
2007-05-17 03:59:40 +08:00
|
|
|
struct exception
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
char *name;
|
|
|
|
double arg1;
|
|
|
|
double arg2;
|
|
|
|
double retval;
|
|
|
|
int err;
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern int matherr _PARAMS((struct __exception *e));
|
|
|
|
#else
|
|
|
|
extern int matherr _PARAMS((struct exception *e));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Values for the type field of struct exception. */
|
|
|
|
|
|
|
|
#define DOMAIN 1
|
|
|
|
#define SING 2
|
|
|
|
#define OVERFLOW 3
|
|
|
|
#define UNDERFLOW 4
|
|
|
|
#define TLOSS 5
|
|
|
|
#define PLOSS 6
|
|
|
|
|
|
|
|
/* Useful constants. */
|
|
|
|
|
2002-07-09 02:05:58 +08:00
|
|
|
#define MAXFLOAT 3.40282347e+38F
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#define M_E 2.7182818284590452354
|
2007-09-07 23:30:59 +08:00
|
|
|
#define M_LOG2E 1.4426950408889634074
|
2000-02-18 03:39:52 +08:00
|
|
|
#define M_LOG10E 0.43429448190325182765
|
|
|
|
#define M_LN2 0.69314718055994530942
|
|
|
|
#define M_LN10 2.30258509299404568402
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#define M_TWOPI (M_PI * 2.0)
|
|
|
|
#define M_PI_2 1.57079632679489661923
|
|
|
|
#define M_PI_4 0.78539816339744830962
|
|
|
|
#define M_3PI_4 2.3561944901923448370E0
|
|
|
|
#define M_SQRTPI 1.77245385090551602792981
|
|
|
|
#define M_1_PI 0.31830988618379067154
|
|
|
|
#define M_2_PI 0.63661977236758134308
|
|
|
|
#define M_2_SQRTPI 1.12837916709551257390
|
|
|
|
#define M_SQRT2 1.41421356237309504880
|
|
|
|
#define M_SQRT1_2 0.70710678118654752440
|
|
|
|
#define M_LN2LO 1.9082149292705877000E-10
|
|
|
|
#define M_LN2HI 6.9314718036912381649E-1
|
2007-05-17 03:59:40 +08:00
|
|
|
#define M_SQRT3 1.73205080756887719000
|
2000-02-18 03:39:52 +08:00
|
|
|
#define M_IVLN10 0.43429448190325182765 /* 1 / log(10) */
|
2007-09-07 23:30:59 +08:00
|
|
|
#define M_LOG2_E _M_LOG2_E
|
2000-02-18 03:39:52 +08:00
|
|
|
#define M_INVLN2 1.4426950408889633870E0 /* 1 / log(2) */
|
|
|
|
|
|
|
|
/* Global control over fdlibm error handling. */
|
|
|
|
|
|
|
|
enum __fdlibm_version
|
|
|
|
{
|
|
|
|
__fdlibm_ieee = -1,
|
|
|
|
__fdlibm_svid,
|
|
|
|
__fdlibm_xopen,
|
|
|
|
__fdlibm_posix
|
|
|
|
};
|
|
|
|
|
|
|
|
#define _LIB_VERSION_TYPE enum __fdlibm_version
|
|
|
|
#define _LIB_VERSION __fdlib_version
|
|
|
|
|
2006-09-14 06:06:43 +08:00
|
|
|
extern __IMPORT _LIB_VERSION_TYPE _LIB_VERSION;
|
2000-02-18 03:39:52 +08:00
|
|
|
|
|
|
|
#define _IEEE_ __fdlibm_ieee
|
|
|
|
#define _SVID_ __fdlibm_svid
|
|
|
|
#define _XOPEN_ __fdlibm_xopen
|
|
|
|
#define _POSIX_ __fdlibm_posix
|
|
|
|
|
|
|
|
#endif /* ! defined (__STRICT_ANSI__) */
|
|
|
|
|
2002-06-28 07:58:38 +08:00
|
|
|
_END_STD_C
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#ifdef __FAST_MATH__
|
|
|
|
#include <machine/fastmath.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _MATH_H_ */
|