Blame sysdeps/generic/math_private_calls.h

Packit 6c4009
/* Private function declarations for libm.
Packit 6c4009
   Copyright (C) 2011-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#define __MSUF_X(x, suffix) x ## suffix
Packit 6c4009
#define __MSUF_S(...) __MSUF_X (__VA_ARGS__)
Packit 6c4009
#define __MSUF(x) __MSUF_S (x, _MSUF_)
Packit 6c4009
Packit 6c4009
#define __MSUF_R_X(x, suffix) x ## suffix ## _r
Packit 6c4009
#define __MSUF_R_S(...) __MSUF_R_X (__VA_ARGS__)
Packit 6c4009
#define __MSUF_R(x) __MSUF_R_S (x, _MSUF_)
Packit 6c4009
Packit 6c4009
/* IEEE style elementary functions.  */
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_acos) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_acosh) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_asin) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_atan2) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_atanh) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_cosh) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_exp) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_exp10) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_exp2) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_fmod) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_gamma) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF_R (__ieee754_gamma) (_Mdouble_, int *);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_hypot) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_j0) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_j1) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_jn) (int, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_lgamma) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF_R (__ieee754_lgamma) (_Mdouble_, int *);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_log) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_log10) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_log2) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_pow) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_remainder) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_sinh) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_sqrt) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_y0) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_y1) (_Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_yn) (int, _Mdouble_);
Packit 6c4009
Packit 6c4009
extern _Mdouble_ __MSUF (__ieee754_scalb) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern int __MSUF (__ieee754_ilogb) (_Mdouble_);
Packit 6c4009
Packit 6c4009
extern int32_t __MSUF (__ieee754_rem_pio2) (_Mdouble_, _Mdouble_ *);
Packit 6c4009
Packit 6c4009
/* fdlibm kernel functions.  */
Packit 6c4009
extern _Mdouble_ __MSUF (__kernel_sin) (_Mdouble_, _Mdouble_, int);
Packit 6c4009
extern _Mdouble_ __MSUF (__kernel_cos) (_Mdouble_, _Mdouble_);
Packit 6c4009
extern _Mdouble_ __MSUF (__kernel_tan) (_Mdouble_, _Mdouble_, int);
Packit 6c4009
Packit 6c4009
#if defined __MATH_DECLARING_LONG_DOUBLE || defined __MATH_DECLARING_FLOATN
Packit 6c4009
extern void __MSUF (__kernel_sincos) (_Mdouble_, _Mdouble_,
Packit 6c4009
				      _Mdouble_ *, _Mdouble_ *, int);
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#if !defined __MATH_DECLARING_LONG_DOUBLE || defined __MATH_DECLARING_FLOATN
Packit 6c4009
extern int __MSUF (__kernel_rem_pio2) (_Mdouble_ *, _Mdouble_ *, int,
Packit 6c4009
				       int, int, const int32_t *);
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Internal functions.  */
Packit 6c4009
#if !defined __MATH_DECLARING_LONG_DOUBLE || !defined NO_LONG_DOUBLE
Packit 6c4009
extern _Mdouble_ __MSUF (__copysign) (_Mdouble_ x, _Mdouble_ __y);
Packit 6c4009
Packit 6c4009
extern inline _Mdouble_
Packit 6c4009
__MSUF (__copysign) (_Mdouble_ x, _Mdouble_ __y)
Packit 6c4009
{
Packit 6c4009
  return __MSUF (__builtin_copysign) (x, __y);
Packit 6c4009
}
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Return X^2 + Y^2 - 1, computed without large cancellation error.
Packit 6c4009
   It is given that 1 > X >= Y >= epsilon / 2, and that X^2 + Y^2 >=
Packit 6c4009
   0.5.  */
Packit 6c4009
extern _Mdouble_ __MSUF (__x2y2m1) (_Mdouble_ x, _Mdouble_ y);
Packit 6c4009
Packit 6c4009
/* Compute the product of X + X_EPS, X + X_EPS + 1, ..., X + X_EPS + N
Packit 6c4009
   - 1, in the form R * (1 + *EPS) where the return value R is an
Packit 6c4009
   approximation to the product and *EPS is set to indicate the
Packit 6c4009
   approximate error in the return value.  X is such that all the
Packit 6c4009
   values X + 1, ..., X + N - 1 are exactly representable, and X_EPS /
Packit 6c4009
   X is small enough that factors quadratic in it can be
Packit 6c4009
   neglected.  */
Packit 6c4009
extern _Mdouble_ __MSUF (__gamma_product) (_Mdouble_ x, _Mdouble_ x_eps,
Packit 6c4009
					   int n, _Mdouble_ *eps);
Packit 6c4009
Packit 6c4009
/* Compute lgamma of a negative argument X, if it is in a range
Packit 6c4009
   (depending on the floating-point format) for which expansion around
Packit 6c4009
   zeros is used, setting *SIGNGAMP accordingly.  */
Packit 6c4009
extern _Mdouble_ __MSUF (__lgamma_neg) (_Mdouble_ x, int *signgamp);
Packit 6c4009
Packit 6c4009
/* Compute the product of 1 + (T / (X + X_EPS)), 1 + (T / (X + X_EPS +
Packit 6c4009
   1)), ..., 1 + (T / (X + X_EPS + N - 1)), minus 1.  X is such that
Packit 6c4009
   all the values X + 1, ..., X + N - 1 are exactly representable, and
Packit 6c4009
   X_EPS / X is small enough that factors quadratic in it can be
Packit 6c4009
   neglected.  */
Packit 6c4009
#if !defined __MATH_DECLARING_FLOAT
Packit 6c4009
extern _Mdouble_ __MSUF (__lgamma_product) (_Mdouble_ t, _Mdouble_ x,
Packit 6c4009
					    _Mdouble_ x_eps, int n);
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
#undef __MSUF_X
Packit 6c4009
#undef __MSUF_S
Packit 6c4009
#undef __MSUF
Packit 6c4009
Packit 6c4009
#undef __MSUF_R_X
Packit 6c4009
#undef __MSUF_R_S
Packit 6c4009
#undef __MSUF_R