Home
last modified time | relevance | path

Searched refs:atanh (Results 1 – 25 of 96) sorted by relevance

1234

/external/python/cpython2/Lib/test/
Dcmath_testcases.txt895 -- atanh: Inverse hyperbolic tangent --
899 atanh0000 atanh 0.0 0.0 -> 0.0 0.0
900 atanh0001 atanh 0.0 -0.0 -> 0.0 -0.0
901 atanh0002 atanh -0.0 0.0 -> -0.0 0.0
902 atanh0003 atanh -0.0 -0.0 -> -0.0 -0.0
905 atanh0010 atanh -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0
906 atanh0011 atanh -9.8813129168249309e-324 -0.0 -> -9.8813129168249309e-324 -0.0
907 atanh0012 atanh -1e-305 0.0 -> -1e-305 0.0
908 atanh0013 atanh -1e-305 -0.0 -> -1e-305 -0.0
909 atanh0014 atanh -1e-150 0.0 -> -1e-150 0.0
[all …]
Dtest_math.py194 self.ftest('atanh(0)', math.atanh(0), 0)
195 self.ftest('atanh(0.5)', math.atanh(0.5), 0.54930614433405489)
196 self.ftest('atanh(-0.5)', math.atanh(-0.5), -0.54930614433405489)
197 self.assertRaises(ValueError, math.atanh, 1)
198 self.assertRaises(ValueError, math.atanh, -1)
199 self.assertRaises(ValueError, math.atanh, INF)
200 self.assertRaises(ValueError, math.atanh, NINF)
201 self.assertTrue(math.isnan(math.atanh(NAN)))
/external/fdlibm/
Dw_atanh.c21 double atanh(double x) /* wrapper atanh */ in atanh() function
23 double atanh(x) /* wrapper atanh */ in atanh()
Dfdlibm.h145 extern double atanh __P((double));
/external/deqp/android/cts/master/src/
Dvk-test-issues.txt8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.*
9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
Dgles3-test-issues.txt12 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.scalar
13 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec2
14 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec3
15 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.mediump_fragment.vec4
91 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
Dgles31-test-issues.txt24 dEQP-GLES31.functional.shaders.builtin_functions.precision.atanh.highp_*
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_trigonometric.inl230 // atanh
232 GLM_FUNC_QUALIFIER genType atanh
237 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'atanh' only accept floating-point inp…
244 VECTORIZE_VEC(atanh)
Dfunc_trigonometric.hpp194 GLM_FUNC_DECL genType atanh(genType const & x);
/external/deqp/external/vulkancts/mustpass/1.0.2/src/
Dtest-issues.txt8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.*
9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h57 __DEVICE__ double atanh(double);
58 __DEVICE__ float atanh(float);
194 using ::atanh;
Dtgmath.h216 __tg_atanh(double __x) {return atanh(__x);} in __tg_atanh()
234 #undef atanh
235 #define atanh(__x) __tg_atanh(__tg_promote1((__x))(__x)) macro
/external/python/cpython2/Modules/
D_math.h24 #define m_atanh atanh
/external/v8/src/base/
Dieee754.h42 V8_BASE_EXPORT double atanh(double x);
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Datanh.pass.cpp25 assert(atanh(c) == x); in test()
42 std::complex<double> r = atanh(testcases[i]); in test_edges()
Datan.pass.cpp42 std::complex<double> t2 = atanh(t1); in test_edges()
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp67 Ambiguous atanh(Ambiguous){ return Ambiguous(); } in atanh() function
793 static_assert((std::is_same<decltype(atanh((float)0)), float>::value), ""); in test_atanh()
794 static_assert((std::is_same<decltype(atanh((bool)0)), double>::value), ""); in test_atanh()
795 static_assert((std::is_same<decltype(atanh((unsigned short)0)), double>::value), ""); in test_atanh()
796 static_assert((std::is_same<decltype(atanh((int)0)), double>::value), ""); in test_atanh()
797 static_assert((std::is_same<decltype(atanh((unsigned int)0)), double>::value), ""); in test_atanh()
798 static_assert((std::is_same<decltype(atanh((long)0)), double>::value), ""); in test_atanh()
799 static_assert((std::is_same<decltype(atanh((unsigned long)0)), double>::value), ""); in test_atanh()
800 static_assert((std::is_same<decltype(atanh((long long)0)), double>::value), ""); in test_atanh()
801 static_assert((std::is_same<decltype(atanh((unsigned long long)0)), double>::value), ""); in test_atanh()
[all …]
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll99 %call = call fast double @atanh(double %conv)
108 %call = call fast double @atanh(double %conv)
111 ; CHECK: call fast double @atanh(double %conv)
407 declare double @atanh(double)
/external/clang/test/CodeGen/
Dlibcall-declarations.c55 double atanh(double);
273 F(atanh), F(atanhf), F(atanhl), F(cbrt), F(cbrtf),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp68 Ambiguous atanh(Ambiguous){ return Ambiguous(); } in atanh() function
795 static_assert((std::is_same<decltype(std::atanh((float)0)), float>::value), ""); in test_atanh()
796 static_assert((std::is_same<decltype(std::atanh((bool)0)), double>::value), ""); in test_atanh()
797 static_assert((std::is_same<decltype(std::atanh((unsigned short)0)), double>::value), ""); in test_atanh()
798 static_assert((std::is_same<decltype(std::atanh((int)0)), double>::value), ""); in test_atanh()
799 static_assert((std::is_same<decltype(std::atanh((unsigned int)0)), double>::value), ""); in test_atanh()
800 static_assert((std::is_same<decltype(std::atanh((long)0)), double>::value), ""); in test_atanh()
801 static_assert((std::is_same<decltype(std::atanh((unsigned long)0)), double>::value), ""); in test_atanh()
802 static_assert((std::is_same<decltype(std::atanh((long long)0)), double>::value), ""); in test_atanh()
803 static_assert((std::is_same<decltype(std::atanh((unsigned long long)0)), double>::value), ""); in test_atanh()
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dreciprocal.inl198 return atanh(genType(1) / x);
/external/libcxx/include/
Dmath.h993 inline _LIBCPP_INLINE_VISIBILITY float atanh(float __lcpp_x) _NOEXCEPT {return ::atanhf… in atanh() function
994 inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __lcpp_x) _NOEXCEPT {return ::atanhl… in atanh() function
999 atanh(_A1 __lcpp_x) _NOEXCEPT {return ::atanh((double)__lcpp_x);} in atanh() function
Dcmath164 floating_point atanh (arithmetic x);
395 using ::atanh;
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt106 | atanh(x) | 0.5 * log(1.0 + x / (1.0 - x)) |
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll75 ; CHECK: declare void @atanh(...)
76 declare void @atanh(...)

1234