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

1 2 3

  /src/lib/libm/noieee_src/
n_atanh.c 33 static char sccsid[] = "@(#)atanh.c 8.1 (Berkeley) 6/4/93";
37 /* ATANH(X)
49 * atanh(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
53 * atanh(x) is NaN if |x| > 1 with signal;
54 * atanh(NaN) is that NaN with no signal;
55 * atanh(+-1) is +-INF with signal.
58 * atanh(x) returns the exact hyperbolic arc tangent of x nearly rounded.
70 atanh(double x) function
  /src/lib/libm/src/
w_atanh.c 19 * wrapper atanh(x)
27 atanh(double x) /* wrapper atanh */ function
38 return __kernel_standard(x,x,30); /* atanh(|x|>1) */
40 return __kernel_standard(x,x,31); /* atanh(|x|==1) */
e_atanhl.c 35 /* EXP_TINY is the threshold below which we use atanh(x) ~= x. */
79 return atanh(x);
  /src/external/apache2/llvm/dist/clang/lib/Headers/
__clang_cuda_math_forward_declares.h 43 __DEVICE__ double atanh(double);
44 __DEVICE__ float atanh(float);
207 using ::atanh;
  /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/src/std/math/
trigonometry.d 1380 * Mathematically, atanh(x) = log( (1+x)/(1-x) ) / 2
1394 real atanh(real x) @safe pure nothrow @nogc
1403 double atanh(double x) @safe pure nothrow @nogc { return atanh(cast(real) x); }
1406 float atanh(float x) @safe pure nothrow @nogc { return atanh(cast(real) x); }
1413 assert(isIdentical(atanh(0.0), 0.0));
1414 assert(isIdentical(atanh(-0.0),-0.0));
1415 assert(isNaN(atanh(real.nan)));
1416 assert(isNaN(atanh(-real.infinity)))
    [all...]
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/stdc/
tgmath.d 132 alias core.stdc.math.atanh atanh;
134 alias core.stdc.math.atanhf atanh;
136 alias core.stdc.math.atanhl atanh;
139 deprecated alias core.stdc.complex.catanh atanh;
140 deprecated alias core.stdc.complex.catanhf atanh;
141 deprecated alias core.stdc.complex.catanhl atanh;
632 alias core.stdc.math.atanh atanh;
634 alias core.stdc.math.atanhf atanh;
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Headers/openmp_wrappers/
cmath 45 __DEVICE__ float atanh(float __x) { return ::atanhf(__x); }
  /src/external/gpl3/gcc/dist/gcc/ginclude/
tgmath.h 66 #define atanh(z) __TGMATH_CPLX(z, atanh, catanh) macro
  /src/external/gpl3/gcc.old/dist/gcc/ginclude/
tgmath.h 66 #define atanh(z) __TGMATH_CPLX(z, atanh, catanh) 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 130 MPC_LOGGING_C_C (atanh)
  /src/tests/lib/lua/libm/
h_lualibm.c 35 TEST(atanh(tanh(M_SQRT2)));
lualibm.lua 41 test("atanh(tanh(M_SQRT2))", lm.atanh(lm.tanh(lm.M_SQRT2)))
  /src/external/lgpl3/mpc/dist/tools/mpcheck/
mpcheck-double.c 107 #define FOO atanh
mpcheck-float.c 119 #define FOO atanh
mpcheck-float128.c 124 #define FOO atanh
mpcheck-longdouble.c 107 #define FOO atanh
  /src/external/lgpl3/mpc/lib/libmpc/
Makefile 31 atanh.c \
  /src/include/
tgmath.h 136 #define atanh(a) __TG_COMPLEX((a), atanh) macro
  /src/lib/lua/libm/
libm.c 112 DFUNC_DBL(atanh)
248 { "atanh", libm_atanh },
  /src/external/gpl3/gcc/dist/gcc/config/m68k/
math-68881.h 224 atanh (double x) function
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
math.h 80 using std::atanh;
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/
math.h 44 using std::tr1::atanh;
  /src/external/gpl3/gcc.old/dist/gcc/config/m68k/
math-68881.h 224 atanh (double x) function

Completed in 45 milliseconds

1 2 3