/external/python/cpython2/Lib/test/ |
D | cmath_testcases.txt | 230 -- 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 …]
|
D | test_math.py | 156 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/ |
D | cmath_testcases.txt | 236 -- 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 …]
|
D | test_math.py | 280 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/ |
D | cwise_op_acosh.cc | 20 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);
|
D | cwise_op_gpu_acosh.cu.cc | 23 DEFINE_UNARY2(acosh, float, double);
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Acosh.pbtxt | 4 name: "math.acosh" 7 name: "acosh"
|
/external/fdlibm/ |
D | w_acosh.c | 22 double acosh(double x) /* wrapper acosh */ in acosh() function 24 double acosh(x) /* wrapper acosh */ in acosh()
|
D | fdlibm.h | 143 extern double acosh __P((double));
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 47 __DEVICE__ double acosh(double); 48 __DEVICE__ float acosh(float); 189 using ::acosh;
|
/external/python/cpython2/Modules/ |
D | _math.h | 8 #define m_acosh acosh
|
/external/python/cpython3/Modules/ |
D | _math.h | 2 # define m_acosh acosh
|
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/ |
D | acosh.pass.cpp | 25 assert(acosh(c) == x); in test() 41 std::complex<double> r = acosh(testcases[i]); in test_edges()
|
/external/v8/src/base/ |
D | ieee754.h | 19 V8_BASE_EXPORT double acosh(double x);
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/master/src/ |
D | gles31-test-issues.txt | 22 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
|
/external/deqp/external/openglcts/data/mustpass/gles/aosp_mustpass/3.2.5.x/src/ |
D | gles31-test-issues.txt | 22 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
|
/external/deqp-deps/glslang/Test/ |
D | 130.vert | 42 asinh(c4D) + acosh(c4D);
|
/external/deqp/android/cts/master/src/ |
D | gles31-test-issues.txt | 23 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
|
D | vk-test-issues.txt | 4 dEQP-VK.glsl.builtin.precision.acosh.highp_compute.*
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 66 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/ |
D | libcalls-shrinkwrap-double.ll | 109 %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/ |
D | double-float-shrink-1.ll | 31 %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/ |
D | libcall-declarations.c | 43 double acosh(double); 270 F(acos), F(acosf), F(acosl), F(acosh), F(acoshf),
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 68 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/ |
D | gles31-test-issues.txt | 23 dEQP-GLES31.functional.shaders.builtin_functions.precision.acosh.highp_*
|