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

1 2 3

  /src/lib/libm/noieee_src/
n_asinh.c 33 static char sccsid[] = "@(#)asinh.c 8.1 (Berkeley) 6/4/93";
37 /* ASINH(X)
52 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
54 * asinh(x) := x if 1+x*x=1,
59 * asinh(x) returns the exact inverse hyperbolic sine of x nearly rounded.
84 asinh(double x) function
  /src/lib/libm/src/
s_asinh.c 18 /* asinh(x)
21 * asinh(x) = sign(x) * log [ |x| + sqrt(x*x+1) ]
23 * asinh(x) := x if 1+x*x=1,
38 asinh(double x) function
s_asinhl.c 35 /* EXP_LARGE is the threshold above which we use asinh(x) ~= log(2x). */
36 /* EXP_TINY is the threshold below which we use asinh(x) ~= x. */
97 return asinh(x);
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 37 __DEVICE__ double asinh(double);
38 __DEVICE__ float asinh(float);
204 using ::asinh;
  /src/external/lgpl3/mpc/dist/tests/
Makefile.am 58 add_ui.dsc agm.dsc arg.dsc asin.dsc asinh.dsc atan.dsc atanh.dsc \
69 arg.dat asin.dat asinh.dat atan.dat atanh.dat \
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 120 alias core.stdc.math.asinh asinh;
122 alias core.stdc.math.asinhf asinh;
124 alias core.stdc.math.asinhl asinh;
127 deprecated alias core.stdc.complex.casinh asinh;
128 deprecated alias core.stdc.complex.casinhf asinh;
129 deprecated alias core.stdc.complex.casinhl asinh;
620 alias core.stdc.math.asinh asinh;
622 alias core.stdc.math.asinhf asinh;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 44 __DEVICE__ float asinh(float __x) { return ::asinhf(__x); }
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 65 #define asinh(z) __TGMATH_CPLX(z, asinh, casinh) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 65 #define asinh(z) __TGMATH_CPLX(z, asinh, casinh) macro
  /src/external/lgpl3/mpc/dist/src/
Makefile.am 23 add_si.c add_ui.c agm.c arg.c asin.c asinh.c atan.c atanh.c clear.c \
logging.c 128 MPC_LOGGING_C_C (asinh)
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/math/
trigonometry.d 1324 * asinh(x) = log( x + sqrt( x*x + 1 )) // if x >= +0
1325 * asinh(x) = -log(-x + sqrt( x*x + 1 )) // if x <= -0
1329 * $(SVH x, asinh(x) )
1335 real asinh(real x) @safe pure nothrow @nogc { return _asinh(x); }
1338 double asinh(double x) @safe pure nothrow @nogc { return _asinh(x); }
1341 float asinh(float x) @safe pure nothrow @nogc { return _asinh(x); }
1348 assert(isIdentical(asinh(0.0), 0.0));
1349 assert(isIdentical(asinh(-0.0), -0.0));
1350 assert(asinh(real.infinity) == real.infinity);
1351 assert(asinh(-real.infinity) == -real.infinity)
    [all...]
  /src/tests/lib/lua/libm/
h_lualibm.c 31 TEST(asinh(sinh(M_PI_2)));
lualibm.lua 37 test("asinh(sinh(M_PI_2))", lm.asinh(lm.sinh(lm.M_PI_2)))
  /src/external/lgpl3/mpc/dist/tools/mpcheck/
mpcheck-double.c 101 #define FOO asinh
mpcheck-float.c 113 #define FOO asinh
mpcheck-float128.c 118 #define FOO asinh
mpcheck-longdouble.c 101 #define FOO asinh
  /src/external/lgpl3/mpc/lib/libmpc/
Makefile 29 asinh.c \
  /src/include/
tgmath.h 135 #define asinh(a) __TG_COMPLEX((a), asinh) macro
  /src/lib/lua/libm/
libm.c 110 DFUNC_DBL(asinh)
246 { "asinh", libm_asinh },
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 79 using std::asinh;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 41 using std::tr1::asinh;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/c_compatibility/
math.h 79 using std::asinh;
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/
math.h 39 using std::tr1::asinh;

Completed in 26 milliseconds

1 2 3