HomeSort by: relevance | last modified time | path
    Searched refs:acosh (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/lib/libm/src/
w_acosh.c 19 * wrapper acosh(x)
26 acosh(double x) /* wrapper acosh */ function
35 return __kernel_standard(x,x,29); /* acosh(x<1) */
e_acoshl.c 36 /* EXP_LARGE is the threshold above which we use acosh(x) ~= log(2x). */
80 RETURNI(logl(x)+ln2); /* acosh(huge)=log(2x), or misnormal */
82 RETURNI(0.0); /* acosh(1) = 0 */
95 return acosh(x);
  /src/lib/libm/noieee_src/
n_acosh.c 33 static char sccsid[] = "@(#)acosh.c 8.1 (Berkeley) 6/4/93";
37 /* ACOSH(X)
51 * acosh(x) = log [ x + sqrt(x*x-1) ]
53 * acosh(x) := log1p(x)+ln2, if (x > 1.0E20); else
54 * acosh(x) := log1p( sqrt(x-1) * (sqrt(x-1) + sqrt(x+1)) ) .
58 * acosh(x) is NaN with signal if x<1.
59 * acosh(NaN) is NaN without signal.
62 * acosh(x) returns the exact inverse hyperbolic cosine of x nearly
89 acosh(double x) function
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 33 __DEVICE__ double acosh(double);
34 __DEVICE__ float acosh(float);
202 using ::acosh;
  /src/external/lgpl3/mpc/dist/tests/
Makefile.am 57 DESCRIPTIONS = abs.dsc acos.dsc acosh.dsc add.dsc add_fr.dsc add_si.dsc \
68 DATA_SETS = abs.dat acos.dat acosh.dat add.dat add_fr.dat agm.dat \
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 108 alias core.stdc.math.acosh acosh;
110 alias core.stdc.math.acoshf acosh;
112 alias core.stdc.math.acoshl acosh;
115 deprecated alias core.stdc.complex.cacosh acosh;
116 deprecated alias core.stdc.complex.cacoshf acosh;
117 deprecated alias core.stdc.complex.cacoshl acosh;
608 alias core.stdc.math.acosh acosh;
610 alias core.stdc.math.acoshf acosh;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 43 __DEVICE__ float acosh(float __x) { return ::acoshf(__x); }
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 64 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 64 #define acosh(z) __TGMATH_CPLX(z, acosh, cacosh) macro
  /src/external/lgpl3/mpc/dist/src/
Makefile.am 22 libmpc_la_SOURCES = mpc-impl.h abs.c acos.c acosh.c add.c add_fr.c \
logging.c 129 MPC_LOGGING_C_C (acosh)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
trigonometry.d 1265 * Mathematically, acosh(x) = log(x + sqrt( x*x - 1))
1273 * $(SVH x, acosh(x) )
1280 real acosh(real x) @safe pure nothrow @nogc { return _acosh(x); }
1283 double acosh(double x) @safe pure nothrow @nogc { return _acosh(x); }
1286 float acosh(float x) @safe pure nothrow @nogc { return _acosh(x); }
1293 assert(isNaN(acosh(0.9)));
1294 assert(isNaN(acosh(real.nan)));
1295 assert(isIdentical(acosh(1.0), 0.0));
1296 assert(acosh(real.infinity) == real.infinity);
1297 assert(isNaN(acosh(0.5)))
    [all...]
  /src/tests/lib/lua/libm/
h_lualibm.c 27 TEST(acosh(cosh(M_SQRT1_2)));
lualibm.lua 33 test("acosh(cosh(M_SQRT1_2))", lm.acosh(lm.cosh(lm.M_SQRT1_2)))
  /src/external/lgpl3/mpc/dist/tools/mpcheck/
mpcheck-double.c 95 #define FOO acosh
mpcheck-float.c 107 #define FOO acosh
mpcheck-float128.c 112 #define FOO acosh
mpcheck-longdouble.c 95 #define FOO acosh
  /src/external/lgpl3/mpc/lib/libmpc/
Makefile 21 acosh.c \
  /src/include/
tgmath.h 134 #define acosh(a) __TG_COMPLEX((a), acosh) macro
  /src/lib/lua/libm/
libm.c 108 DFUNC_DBL(acosh)
244 { "acosh", libm_acosh },
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 78 using std::acosh;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 39 using std::tr1::acosh;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 78 using std::acosh;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
math.h 37 using std::tr1::acosh;

Completed in 22 milliseconds

1 2 3