/external/v8/test/mjsunit/es6/ |
D | 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) { 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/ |
D | w_atanh.c | 21 double atanh(double x) /* wrapper atanh */ in atanh() function 23 double atanh(x) /* wrapper atanh */ in atanh()
|
D | fdlibm.h | 145 extern double atanh __P((double));
|
/external/v8/test/unittests/base/ |
D | ieee754-unittest.cc | 66 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/ |
D | test-issues.txt | 8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.* 9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
|
/external/vulkan-validation-layers/libs/glm/detail/ |
D | func_trigonometric.inl | 230 // 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)
|
D | func_trigonometric.hpp | 194 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.h | 57 __DEVICE__ double atanh(double); 58 __DEVICE__ float atanh(float); 194 using ::atanh;
|
D | tgmath.h | 216 __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/ |
D | gles3-test-issues.txt | 12 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_*
|
D | vulkan-test-issues.txt | 8 dEQP-VK.glsl.builtin.precision.atanh.highp_compute.* 9 dEQP-VK.glsl.builtin.precision.atanh.mediump_compute.*
|
D | gles31-test-issues.txt | 24 dEQP-GLES31.functional.shaders.builtin_functions.precision.atanh.highp_*
|
/external/v8/src/base/ |
D | ieee754.h | 26 double atanh(double x);
|
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/ |
D | atanh.pass.cpp | 25 assert(atanh(c) == x); in test() 42 std::complex<double> r = atanh(x[i]); in test_edges()
|
D | atan.pass.cpp | 43 std::complex<double> t2 = atanh(t1); in test_edges()
|
/external/mesa3d/src/glsl/builtins/ir/ |
D | atanh.ir | 1 ((function atanh
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-1.ll | 98 %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/ |
D | libcall-declarations.c | 55 double atanh(double); 273 F(atanh), F(atanhf), F(atanhl), F(cbrt), F(cbrtf),
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 70 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/ |
D | tgmath.h | 216 __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/ |
D | reciprocal.inl | 198 return atanh(genType(1) / x);
|
/external/libcxx/include/ |
D | cmath | 164 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/ |
D | libm.so.conf | 64 double atanh(double);
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 349 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/ |
D | functional.shaders.builtin_functions.precision.txt | 106 | atanh(x) | 0.5 * log(1.0 + x / (1.0 - x)) |
|