HomeSort by relevance Sort by last modified time
    Searched refs:tanh (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestTanh.rs 24 return tanh(inV);
28 return tanh(inV);
32 return tanh(inV);
36 return tanh(inV);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_tanh.c 16 /* Tanh(x)
22 * 0. tanh(x) is defined to be -----------
25 * 1. reduce x to non-negative by tanh(-x) = -tanh(x).
26 * 2. 0 <= x < 2**-28 : tanh(x) := x with inexact if x != 0
28 * 2**-28 <= x < 1 : tanh(x) := -----; t = expm1(-2x)
31 * 1 <= x < 22 : tanh(x) := 1 - -----; t = expm1(2x)
33 * 22 <= x <= INF : tanh(x) := 1.
36 * tanh(NaN) is NaN;
37 * only tanh(0)=0 is exact for finite argument
49 tanh(double x) function
    [all...]
  /bionic/libstdc++/include/
cmath 55 using ::tanh;
  /ndk/sources/cxx-stl/gabi++/include/
cmath 55 using ::tanh;
  /ndk/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /prebuilts/misc/common/swig/include/2.0.11/
math.i 39 extern double tanh(double x);
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/
cmath 53 using ::tanh;
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/
cmath 53 using ::tanh;
  /prebuilts/ndk/5/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/6/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/7/sources/cxx-stl/gabi++/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/7/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/8/sources/cxx-stl/gabi++/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/8/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/9/sources/cxx-stl/llvm-libc++/gabi++/include/
cmath 55 using ::tanh;
  /prebuilts/ndk/9/sources/cxx-stl/system/include/
cmath 55 using ::tanh;
  /external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
tanh_valarray.pass.cpp 16 // tanh(const valarray<T>& x);
46 std::valarray<T> v3 = tanh(v1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
tanh_valarray.pass.cpp 16 // tanh(const valarray<T>& x);
46 std::valarray<T> v3 = tanh(v1);
  /external/v8/test/mjsunit/es6/
math-hyperbolic.js 31 [Math.sinh, Math.cosh, Math.tanh, Math.asinh, Math.acosh, Math.atanh].
53 test_id(Math.tanh, Math.atanh, x);
54 test_id(Math.tanh, Math.atanh, -x);
58 [Math.sinh, Math.asinh, Math.tanh, Math.atanh].forEach(function(fun) {
90 assertEquals(1, Math.tanh(Infinity));
91 assertEquals(-1, Math.tanh(-Infinity));
113 assertEqualsDelta(0.4621171572600, Math.tanh(0.5), 1E-12);
114 assertEqualsDelta(0.9999092042625, Math.tanh(5), 1E-12);
115 assertEqualsDelta(-0.4621171572600, Math.tanh(-0.5), 1E-12);
116 assertEqualsDelta(-0.9999092042625, Math.tanh(-5), 1E-12)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 51 tmp = tanh(darray);
77 tmp = tanh(farray);
104 tmp = tanh(ldarray);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 51 tmp = tanh(darray);
77 tmp = tanh(farray);
104 tmp = tanh(ldarray);
  /external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
tan.pass.cpp 45 std::complex<double> t2 = tanh(t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
tan.pass.cpp 45 std::complex<double> t2 = tanh(t1);
  /bionic/libm/x86/
s_tanh.S 35 // tanh(x)=(exp(x)-exp(-x))/(exp(x)+exp(-x))=(1-exp(-2*x))/(1+exp(-2*x))
73 // tanh(NaN) = quiet NaN, and raise invalid exception
74 // tanh(INF) = that INF
75 // tanh(+/-0) = +/-0
95 # -- Begin tanh
96 ENTRY(tanh) function
277 END(tanh)
278 # -- End tanh
281 ALIAS_SYMBOL(tanhl, tanh);

Completed in 526 milliseconds

1 2 3 4 5 6 7 8 910