Home
last modified time | relevance | path

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

1234567

/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/python/cpython3/Lib/test/
Dcmath_testcases.txt236 -- acosh: Inverse hyperbolic cosine --
240 acosh0000 acosh 0.0 0.0 -> 0.0 1.5707963267948966
241 acosh0001 acosh 0.0 -0.0 -> 0.0 -1.5707963267948966
242 acosh0002 acosh -0.0 0.0 -> 0.0 1.5707963267948966
243 acosh0003 acosh -0.0 -0.0 -> 0.0 -1.5707963267948966
246 acosh0010 acosh 1.0 0.0 -> 0.0 0.0
247 acosh0011 acosh 1.0 -0.0 -> 0.0 -0.0
248 acosh0012 acosh -1.0 0.0 -> 0.0 3.1415926535897931
249 acosh0013 acosh -1.0 -0.0 -> 0.0 -3.1415926535897931
252 acosh0020 acosh -9.8813129168249309e-324 0.0 -> 0.0 1.5707963267948966
[all …]
Dtest_math.py280 self.assertRaises(TypeError, math.acosh)
281 self.ftest('acosh(1)', math.acosh(1), 0)
282 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168)
283 self.assertRaises(ValueError, math.acosh, 0)
284 self.assertRaises(ValueError, math.acosh, -1)
285 self.assertEqual(math.acosh(INF), INF)
286 self.assertRaises(ValueError, math.acosh, NINF)
287 self.assertTrue(math.isnan(math.acosh(NAN)))
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_acosh.cc20 REGISTER4(UnaryOp, CPU, "Acosh", functor::acosh, float, double, complex64,
24 REGISTER2(UnaryOp, SYCL, "Acosh", functor::acosh, float, double);
28 REGISTER2(UnaryOp, GPU, "Acosh", functor::acosh, float, double);
Dcwise_op_gpu_acosh.cu.cc23 DEFINE_UNARY2(acosh, float, double);
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Acosh.pbtxt4 name: "math.acosh"
7 name: "acosh"
/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/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h47 __DEVICE__ double acosh(double);
48 __DEVICE__ float acosh(float);
189 using ::acosh;
/external/python/cpython2/Modules/
D_math.h8 #define m_acosh acosh
/external/python/cpython3/Modules/
D_math.h2 # define m_acosh acosh
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Dacosh.pass.cpp25 assert(acosh(c) == x); in test()
41 std::complex<double> r = acosh(testcases[i]); in test_edges()
/external/v8/src/base/
Dieee754.h19 V8_BASE_EXPORT double acosh(double x);
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/master/src/
Dgles31-test-issues.txt22 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.5.x/src/
Dgles31-test-issues.txt22 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
/external/deqp-deps/glslang/Test/
D130.vert42 asinh(c4D) + acosh(c4D);
/external/deqp/android/cts/master/src/
Dgles31-test-issues.txt23 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
Dvk-test-issues.txt4 dEQP-VK.glsl.builtin.precision.acosh.highp_compute.*
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp66 Ambiguous acosh(Ambiguous){ return Ambiguous(); } in acosh() function
756 static_assert((std::is_same<decltype(acosh((float)0)), float>::value), ""); in test_acosh()
757 static_assert((std::is_same<decltype(acosh((bool)0)), double>::value), ""); in test_acosh()
758 static_assert((std::is_same<decltype(acosh((unsigned short)0)), double>::value), ""); in test_acosh()
759 static_assert((std::is_same<decltype(acosh((int)0)), double>::value), ""); in test_acosh()
760 static_assert((std::is_same<decltype(acosh((unsigned int)0)), double>::value), ""); in test_acosh()
761 static_assert((std::is_same<decltype(acosh((long)0)), double>::value), ""); in test_acosh()
762 static_assert((std::is_same<decltype(acosh((unsigned long)0)), double>::value), ""); in test_acosh()
763 static_assert((std::is_same<decltype(acosh((long long)0)), double>::value), ""); in test_acosh()
764 static_assert((std::is_same<decltype(acosh((unsigned long long)0)), double>::value), ""); in test_acosh()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Util/
Dlibcalls-shrinkwrap-double.ll109 %call_04 = call double @acosh(double %value)
113 ; CHECK-NEXT: %call_04 = call double @acosh(double %value)
182 declare double @acosh(double)
/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.cpp68 Ambiguous acosh(Ambiguous){ return Ambiguous(); } in acosh() function
793 static_assert((std::is_same<decltype(std::acosh((float)0)), float>::value), ""); in test_acosh()
794 static_assert((std::is_same<decltype(std::acosh((bool)0)), double>::value), ""); in test_acosh()
795 static_assert((std::is_same<decltype(std::acosh((unsigned short)0)), double>::value), ""); in test_acosh()
796 static_assert((std::is_same<decltype(std::acosh((int)0)), double>::value), ""); in test_acosh()
797 static_assert((std::is_same<decltype(std::acosh((unsigned int)0)), double>::value), ""); in test_acosh()
798 static_assert((std::is_same<decltype(std::acosh((long)0)), double>::value), ""); in test_acosh()
799 static_assert((std::is_same<decltype(std::acosh((unsigned long)0)), double>::value), ""); in test_acosh()
800 static_assert((std::is_same<decltype(std::acosh((long long)0)), double>::value), ""); in test_acosh()
801 static_assert((std::is_same<decltype(std::acosh((unsigned long long)0)), double>::value), ""); in test_acosh()
[all …]
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.3.x/src/
Dgles31-test-issues.txt23 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*

1234567