Home
last modified time | relevance | path

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

1234

/external/v8/test/mjsunit/es6/
Dmath-hyperbolic.js31 [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) {
78 assertEquals(-Infinity, Math.atanh(-1));
79 assertEquals(Infinity, Math.atanh(1));
83 assertTrue(isNaN(Math.atanh(-x)));
84 assertTrue(isNaN(Math.atanh(x)));
128 assertEqualsDelta(0.5493061443341, Math.atanh(0.5), 1E-12);
129 assertEqualsDelta(0.1003353477311, Math.atanh(0.1), 1E-12);
[all …]
/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/v8/test/unittests/base/
Dieee754-unittest.cc66 EXPECT_THAT(atanh(std::numeric_limits<double>::quiet_NaN()), IsNaN()); in TEST()
67 EXPECT_THAT(atanh(std::numeric_limits<double>::signaling_NaN()), IsNaN()); in TEST()
68 EXPECT_THAT(atanh(std::numeric_limits<double>::infinity()), IsNaN()); in TEST()
69 EXPECT_EQ(std::numeric_limits<double>::infinity(), atanh(1)); in TEST()
70 EXPECT_EQ(-std::numeric_limits<double>::infinity(), atanh(-1)); in TEST()
71 EXPECT_DOUBLE_EQ(0.54930614433405478, atanh(0.5)); in TEST()
/external/deqp/external/vulkancts/mustpass/1.0.0/src/
Dtest-issues.txt8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.*
9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
/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/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
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/deqp/android/cts/master/src/
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_*
Dvulkan-test-issues.txt8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.*
9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
Dgles31-test-issues.txt24 dEQP-GLES31.functional.shaders.builtin_functions.precision.atanh.highp_*
/external/v8/src/base/
Dieee754.h26 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(x[i]); in test_edges()
Datan.pass.cpp43 std::complex<double> t2 = atanh(t1); in test_edges()
/external/mesa3d/src/glsl/builtins/ir/
Datanh.ir1 ((function atanh
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll98 %call = call double @atanh(double %conv)
107 %call = call double @atanh(double %conv)
110 ; CHECK: call double @atanh(double %conv)
358 declare double @atanh(double) #1
/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.cpp70 Ambiguous atanh(Ambiguous){ return Ambiguous(); } in atanh() function
750 static_assert((std::is_same<decltype(std::atanh((float)0)), float>::value), ""); in test_atanh()
751 static_assert((std::is_same<decltype(std::atanh((bool)0)), double>::value), ""); in test_atanh()
752 static_assert((std::is_same<decltype(std::atanh((unsigned short)0)), double>::value), ""); in test_atanh()
753 static_assert((std::is_same<decltype(std::atanh((int)0)), double>::value), ""); in test_atanh()
754 static_assert((std::is_same<decltype(std::atanh((unsigned int)0)), double>::value), ""); in test_atanh()
755 static_assert((std::is_same<decltype(std::atanh((long)0)), double>::value), ""); in test_atanh()
756 static_assert((std::is_same<decltype(std::atanh((unsigned long)0)), double>::value), ""); in test_atanh()
757 static_assert((std::is_same<decltype(std::atanh((long long)0)), double>::value), ""); in test_atanh()
758 static_assert((std::is_same<decltype(std::atanh((unsigned long long)0)), double>::value), ""); in test_atanh()
[all …]
/external/clang/lib/Headers/
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/vulkan-validation-layers/libs/glm/gtc/
Dreciprocal.inl198 return atanh(genType(1) / x);
/external/libcxx/include/
Dcmath164 floating_point atanh (arithmetic x);
1081 // atanh
1084 using ::atanh;
1087 inline _LIBCPP_INLINE_VISIBILITY float atanh(float __lcpp_x) _NOEXCEPT {return atanhf(_…
1088 inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __lcpp_x) _NOEXCEPT {return atanhl(_…
1093 atanh(_A1 __lcpp_x) _NOEXCEPT {return atanh((double)__lcpp_x);}
/external/ltrace/etc/
Dlibm.so.conf64 double atanh(double);
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp349 static_assert((std::is_same<decltype(atanh((double)0)), double>::value), ""); in test_atanh()
352 assert(atanh(0) == 0); in test_atanh()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt106 | atanh(x) | 0.5 * log(1.0 + x / (1.0 - x)) |

1234