/external/python/cpython2/Lib/test/ |
D | cmath_testcases.txt | 11 -- <function> is the function to be tested (exp, cos, asinh, ...), 560 -- asinh: Inverse hyperbolic sine -- 564 asinh0000 asinh 0.0 0.0 -> 0.0 0.0 565 asinh0001 asinh 0.0 -0.0 -> 0.0 -0.0 566 asinh0002 asinh -0.0 0.0 -> -0.0 0.0 567 asinh0003 asinh -0.0 -0.0 -> -0.0 -0.0 570 asinh0010 asinh 0.0 1.0 -> 0.0 1.5707963267948966 571 asinh0011 asinh 0.0 -1.0 -> 0.0 -1.5707963267948966 572 asinh0012 asinh -0.0 1.0 -> -0.0 1.5707963267948966 573 asinh0013 asinh -0.0 -1.0 -> -0.0 -1.5707963267948966 [all …]
|
D | test_math.py | 175 self.assertRaises(TypeError, math.asinh) 176 self.ftest('asinh(0)', math.asinh(0), 0) 177 self.ftest('asinh(1)', math.asinh(1), 0.88137358701954305) 178 self.ftest('asinh(-1)', math.asinh(-1), -0.88137358701954305) 179 self.assertEqual(math.asinh(INF), INF) 180 self.assertEqual(math.asinh(NINF), NINF) 181 self.assertTrue(math.isnan(math.asinh(NAN)))
|
/external/python/cpython3/Lib/test/ |
D | cmath_testcases.txt | 11 -- <function> is the function to be tested (exp, cos, asinh, ...), 566 -- asinh: Inverse hyperbolic sine -- 570 asinh0000 asinh 0.0 0.0 -> 0.0 0.0 571 asinh0001 asinh 0.0 -0.0 -> 0.0 -0.0 572 asinh0002 asinh -0.0 0.0 -> -0.0 0.0 573 asinh0003 asinh -0.0 -0.0 -> -0.0 -0.0 576 asinh0010 asinh 0.0 1.0 -> 0.0 1.5707963267948966 577 asinh0011 asinh 0.0 -1.0 -> 0.0 -1.5707963267948966 578 asinh0012 asinh -0.0 1.0 -> -0.0 1.5707963267948966 579 asinh0013 asinh -0.0 -1.0 -> -0.0 -1.5707963267948966 [all …]
|
D | test_math.py | 301 self.assertRaises(TypeError, math.asinh) 302 self.ftest('asinh(0)', math.asinh(0), 0) 303 self.ftest('asinh(1)', math.asinh(1), 0.88137358701954305) 304 self.ftest('asinh(-1)', math.asinh(-1), -0.88137358701954305) 305 self.assertEqual(math.asinh(INF), INF) 306 self.assertEqual(math.asinh(NINF), NINF) 307 self.assertTrue(math.isnan(math.asinh(NAN)))
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_asinh.cc | 20 REGISTER4(UnaryOp, CPU, "Asinh", functor::asinh, float, double, complex64, 24 REGISTER2(UnaryOp, SYCL, "Asinh", functor::asinh, float, double); 28 REGISTER2(UnaryOp, GPU, "Asinh", functor::asinh, float, double);
|
D | cwise_op_gpu_asinh.cu.cc | 23 DEFINE_UNARY2(asinh, float, double);
|
D | unary_ops_composition.cc | 264 REGISTER_COMPUTE_FN_HELPER(Asinh, functor::asinh<T>); 393 REGISTER_COMPUTE_FN_HELPER(Asinh, functor::asinh<T>);
|
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/ |
D | sinh_arcsinh.py | 157 return math_ops.sinh((math_ops.asinh(x) + self.skewness) * self.tailweight) 160 return math_ops.sinh(math_ops.asinh(y) / self.tailweight - self.skewness) 173 math_ops.asinh(y) / self.tailweight - self.skewness) 189 (math_ops.asinh(x) + self.skewness) * self.tailweight)
|
/external/tensorflow/tensorflow/core/api_def/python_api/ |
D | api_def_Asinh.pbtxt | 4 name: "math.asinh" 7 name: "asinh"
|
/external/fdlibm/ |
D | s_asinh.c | 37 double asinh(double x) in asinh() function 39 double asinh(x) in asinh()
|
D | fdlibm.h | 144 extern double asinh __P((double));
|
/external/clang/lib/Headers/ |
D | __clang_cuda_math_forward_declares.h | 51 __DEVICE__ double asinh(double); 52 __DEVICE__ float asinh(float); 191 using ::asinh;
|
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/ |
D | asinh.pass.cpp | 25 assert(asinh(c) == x); in test() 41 std::complex<double> r = asinh(testcases[i]); in test_edges()
|
/external/python/cpython2/Modules/ |
D | _math.h | 16 #define m_asinh asinh
|
/external/python/cpython3/Modules/ |
D | _math.h | 11 # define m_asinh asinh
|
/external/v8/src/base/ |
D | ieee754.h | 26 V8_BASE_EXPORT double asinh(double x);
|
/external/deqp-deps/glslang/Test/ |
D | 130.vert | 42 asinh(c4D) + acosh(c4D);
|
/external/libcxx/test/std/depr/depr.c.headers/ |
D | math_h.pass.cpp | 67 Ambiguous asinh(Ambiguous){ return Ambiguous(); } in asinh() function 775 static_assert((std::is_same<decltype(asinh((float)0)), float>::value), ""); in test_asinh() 776 static_assert((std::is_same<decltype(asinh((bool)0)), double>::value), ""); in test_asinh() 777 static_assert((std::is_same<decltype(asinh((unsigned short)0)), double>::value), ""); in test_asinh() 778 static_assert((std::is_same<decltype(asinh((int)0)), double>::value), ""); in test_asinh() 779 static_assert((std::is_same<decltype(asinh((unsigned int)0)), double>::value), ""); in test_asinh() 780 static_assert((std::is_same<decltype(asinh((long)0)), double>::value), ""); in test_asinh() 781 static_assert((std::is_same<decltype(asinh((unsigned long)0)), double>::value), ""); in test_asinh() 782 static_assert((std::is_same<decltype(asinh((long long)0)), double>::value), ""); in test_asinh() 783 static_assert((std::is_same<decltype(asinh((unsigned long long)0)), double>::value), ""); in test_asinh() [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-1.ll | 65 %call = call fast double @asinh(double %conv) 74 %call = call fast double @asinh(double %conv) 77 ; CHECK: call fast double @asinh(double %conv) 412 declare double @asinh(double)
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 49 double asinh(double); 271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh),
|
/external/swiftshader/third_party/SPIRV-Tools/test/ |
D | ext_inst.opencl_test.cpp | 102 CASE1(Asinh, asinh), 103 CASE1(Asinh, asinh),
|
/external/deqp-deps/SPIRV-Tools/test/ |
D | ext_inst.opencl_test.cpp | 102 CASE1(Asinh, asinh), 103 CASE1(Asinh, asinh),
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_unary_test.py | 210 self._compareBoth(x, np.arcsinh, math_ops.asinh) 265 self._compareBoth(x, np.arcsinh, math_ops.asinh) 318 self._compareBoth(x, np.arcsinh, math_ops.asinh) 446 self._compareCpu(y, np.arcsinh, math_ops.asinh, grad_rtol=1e-2) 487 self._compareCpu(y, np.arcsinh, math_ops.asinh)
|
/external/libcxx/test/std/numerics/c.math/ |
D | cmath.pass.cpp | 69 Ambiguous asinh(Ambiguous){ return Ambiguous(); } in asinh() function 812 static_assert((std::is_same<decltype(std::asinh((float)0)), float>::value), ""); in test_asinh() 813 static_assert((std::is_same<decltype(std::asinh((bool)0)), double>::value), ""); in test_asinh() 814 static_assert((std::is_same<decltype(std::asinh((unsigned short)0)), double>::value), ""); in test_asinh() 815 static_assert((std::is_same<decltype(std::asinh((int)0)), double>::value), ""); in test_asinh() 816 static_assert((std::is_same<decltype(std::asinh((unsigned int)0)), double>::value), ""); in test_asinh() 817 static_assert((std::is_same<decltype(std::asinh((long)0)), double>::value), ""); in test_asinh() 818 static_assert((std::is_same<decltype(std::asinh((unsigned long)0)), double>::value), ""); in test_asinh() 819 static_assert((std::is_same<decltype(std::asinh((long long)0)), double>::value), ""); in test_asinh() 820 static_assert((std::is_same<decltype(std::asinh((unsigned long long)0)), double>::value), ""); in test_asinh() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-1.ll | 85 %call = call fast double @asinh(double %conv) 93 ; CHECK-NEXT: [[CALL:%.*]] = call fast double @asinh(double [[CONV]]) 97 %call = call fast double @asinh(double %conv) 545 declare double @asinh(double)
|