Home
last modified time | relevance | path

Searched refs:acosh (Results 1 – 25 of 94) sorted by relevance

1234

/external/python/cpython2/Lib/test/
Dcmath_testcases.txt230 -- acosh: Inverse hyperbolic cosine --
234 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966
235 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966
236 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966
237 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966
240 acosh0010 acosh 1.0 0.0 -> 0.0 0.0
241 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0
242 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931
243 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931
246 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.5707963267948966
[all …]
Dtest_math.py156 self.assertRaises(TypeError, math.acosh)
157 self.ftest('acosh(1)', math.acosh(1), 0)
158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168)
159 self.assertRaises(ValueError, math.acosh, 0)
160 self.assertRaises(ValueError, math.acosh, -1)
161 self.assertEqual(math.acosh(INF), INF)
162 self.assertRaises(ValueError, math.acosh, NINF)
163 self.assertTrue(math.isnan(math.acosh(NAN)))
/external/fdlibm/
Dw_acosh.c22 double acosh(double x) /* wrapper acosh */ in acosh() function
24 double acosh(x) /* wrapper acosh */ in acosh()
Dfdlibm.h143 extern double acosh __P((double));
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_trigonometric.inl214 // acosh
216 GLM_FUNC_QUALIFIER genType acosh
221 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'acosh' only accept floating-point inp…
228 VECTORIZE_VEC(acosh) argument
Dfunc_trigonometric.hpp184 GLM_FUNC_DECL genType acosh(genType const & x);
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h47 __DEVICE__ double acosh(double);
48 __DEVICE__ float acosh(float);
189 using ::acosh;
Dtgmath.h158 __tg_acosh(double __x) {return acosh(__x);} in __tg_acosh()
176 #undef acosh
177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
/external/python/cpython2/Modules/
D_math.h8 #define m_acosh acosh
/external/v8/src/base/
Dieee754.h19 V8_BASE_EXPORT double acosh(double x);
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Dacosh.pass.cpp25 assert(acosh(c) == x); in test()
42 std::complex<double> r = acosh(testcases[i]); in test_edges()
/external/deqp/android/cts/master/src/
Dvk-test-issues.txt7 dEQP-VK.glsl.builtin.precision.acosh.highp_compute.*
Dgles31-test-issues.txt23 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
Dgles3-test-issues.txt90 dEQP-GLES3.functional.shaders.builtin_functions.precision.acosh.highp_*
/external/deqp/external/vulkancts/mustpass/1.0.2/src/
Dtest-issues.txt7 dEQP-VK.glsl.builtin.precision.acosh.highp_compute.*
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp65 Ambiguous acosh(Ambiguous){ return Ambiguous(); } in acosh() function
755 static_assert((std::is_same<decltype(acosh((float)0)), float>::value), ""); in test_acosh()
756 static_assert((std::is_same<decltype(acosh((bool)0)), double>::value), ""); in test_acosh()
757 static_assert((std::is_same<decltype(acosh((unsigned short)0)), double>::value), ""); in test_acosh()
758 static_assert((std::is_same<decltype(acosh((int)0)), double>::value), ""); in test_acosh()
759 static_assert((std::is_same<decltype(acosh((unsigned int)0)), double>::value), ""); in test_acosh()
760 static_assert((std::is_same<decltype(acosh((long)0)), double>::value), ""); in test_acosh()
761 static_assert((std::is_same<decltype(acosh((unsigned long)0)), double>::value), ""); in test_acosh()
762 static_assert((std::is_same<decltype(acosh((long long)0)), double>::value), ""); in test_acosh()
763 static_assert((std::is_same<decltype(acosh((unsigned long long)0)), double>::value), ""); in test_acosh()
[all …]
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll31 %call = call fast double @acosh(double %conv)
40 %call = call fast double @acosh(double %conv)
43 ; CHECK: call fast double @acosh(double %conv)
410 declare double @acosh(double)
/external/clang/test/CodeGen/
Dlibcall-declarations.c43 double acosh(double);
270 F(acos), F(acosf), F(acosl), F(acosh), F(acoshf),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp66 Ambiguous acosh(Ambiguous){ return Ambiguous(); } in acosh() function
757 static_assert((std::is_same<decltype(std::acosh((float)0)), float>::value), ""); in test_acosh()
758 static_assert((std::is_same<decltype(std::acosh((bool)0)), double>::value), ""); in test_acosh()
759 static_assert((std::is_same<decltype(std::acosh((unsigned short)0)), double>::value), ""); in test_acosh()
760 static_assert((std::is_same<decltype(std::acosh((int)0)), double>::value), ""); in test_acosh()
761 static_assert((std::is_same<decltype(std::acosh((unsigned int)0)), double>::value), ""); in test_acosh()
762 static_assert((std::is_same<decltype(std::acosh((long)0)), double>::value), ""); in test_acosh()
763 static_assert((std::is_same<decltype(std::acosh((unsigned long)0)), double>::value), ""); in test_acosh()
764 static_assert((std::is_same<decltype(std::acosh((long long)0)), double>::value), ""); in test_acosh()
765 static_assert((std::is_same<decltype(std::acosh((unsigned long long)0)), double>::value), ""); in test_acosh()
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dreciprocal.inl170 return acosh(genType(1) / x);
/external/libcxx/include/
Dmath.h969 inline _LIBCPP_INLINE_VISIBILITY float acosh(float __lcpp_x) _NOEXCEPT {return ::acoshf… in acosh() function
970 inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __lcpp_x) _NOEXCEPT {return ::acoshl… in acosh() function
975 acosh(_A1 __lcpp_x) _NOEXCEPT {return ::acosh((double)__lcpp_x);} in acosh() function
Dcmath156 floating_point acosh (arithmetic x);
391 using ::acosh;
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt105 | acosh(x) | log(x + sqrt((x+1.0) * (x-1.0))) |
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll30 ; CHECK: declare void @acosh(...)
31 declare void @acosh(...)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def257 /// double acosh(double x);
258 TLI_DEFINE_ENUM_INTERNAL(acosh)
259 TLI_DEFINE_STRING_INTERNAL("acosh")

1234