Home
last modified time | relevance | path

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

12

/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/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
95 dEQP-GLES3.functional.shaders.builtin_functions.precision.atanh.highp_*
Dgles31-test-issues.txt40 dEQP-GLES31.functional.shaders.builtin_functions.precision.atanh.highp_*
Dgles3-hw-issues.txt62 dEQP-GLES3.functional.shaders.operator.angle_and_trigonometry.atanh.highp_vec3_vertex
63 dEQP-GLES3.functional.shaders.operator.angle_and_trigonometry.atanh.highp_vec4_vertex
64 dEQP-GLES3.functional.shaders.operator.angle_and_trigonometry.atanh.mediump_vec3_vertex
65 dEQP-GLES3.functional.shaders.operator.angle_and_trigonometry.atanh.mediump_vec4_vertex
/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/libcxx/include/
Dcmath164 floating_point atanh (arithmetic x);
1077 // atanh
1080 using ::atanh;
1083 inline _LIBCPP_INLINE_VISIBILITY float atanh(float __lcpp_x) _NOEXCEPT {return atanhf(_…
1084 inline _LIBCPP_INLINE_VISIBILITY long double atanh(long double __lcpp_x) _NOEXCEPT {return atanhl(_…
1089 atanh(_A1 __lcpp_x) _NOEXCEPT {return atanh((double)__lcpp_x);}
Dcomplex214 template<class T> complex<T> atanh(const complex<T>&);
1274 // atanh
1278 atanh(const complex<_Tp>& __x)
1416 complex<_Tp> __z = atanh(complex<_Tp>(-__x.imag(), __x.real()));
/external/deqp/framework/common/
DtcuVectorUtil.hpp102 inline float atanh (float a) { return deFloatAtanh(a); } in atanh() function
440 TCU_DECLARE_VECTOR_UNARY_FUNC(atanh, deFloatAtanh)
/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/ltrace/etc/
Dlibm.so.conf64 double atanh(double);
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt106 | atanh(x) | 0.5 * log(1.0 + x / (1.0 - x)) |
/external/mesa3d/src/mesa/main/
Dimports.h144 #define atanhf(f) ((float) atanh(f))
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def217 /// double atanh(double x);
218 TLI_DEFINE_ENUM_INTERNAL(atanh)
219 TLI_DEFINE_STRING_INTERNAL("atanh")
/external/mesa3d/src/glsl/builtins/profiles/
D130.glsl75 float atanh(float x);
76 vec2 atanh(vec2 x);
77 vec3 atanh(vec3 x);
78 vec4 atanh(vec4 x);
D140.glsl75 float atanh(float x);
76 vec2 atanh(vec2 x);
77 vec3 atanh(vec3 x);
78 vec4 atanh(vec4 x);
/external/v8/test/webkit/fast/js/
DObject-getOwnPropertyNames-expected.txt84 …1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2', 'atanh', 'cbrt', 'ceil', …
/external/llvm/lib/Analysis/
DTargetLibraryInfo.cpp148 TLI.setUnavailable(LibFunc::atanh); in initialize()

12