/external/skia/resources/sksl/intrinsics/ |
D | Asinh.sksl | 6 return (asinh(inputVal.x) == expected.x && 7 asinh(inputVal.xy) == expected.xy && 8 asinh(inputVal.xyz) == expected.xyz && 9 asinh(inputVal.xyzw) == expected.xyzw && 10 asinh(constVal1.x) == expected.x && 11 asinh(constVal1.xy) == expected.xy && 12 asinh(constVal1.xyz) == expected.xyz && 13 asinh(constVal1.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/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 …]
|
/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 …]
|
/external/skia/tests/sksl/intrinsics/ |
D | Asinh.glsl | 8 …return ((((((asinh(inputVal.x) == expected.x && asinh(inputVal.xy) == expected.xy) && asinh(inputV…
|
D | Asinh.metal | 18 …asinh(_uniforms.inputVal.x) == _uniforms.expected.x && all(asinh(_uniforms.inputVal.xy) == _unifor…
|
/external/tensorflow/tensorflow/core/kernels/ |
D | cwise_op_asinh.cc | 20 REGISTER6(UnaryOp, CPU, "Asinh", functor::asinh, Eigen::half, bfloat16, float, 25 REGISTER3(UnaryOp, GPU, "Asinh", functor::asinh, Eigen::half, float, double); 27 REGISTER(UnaryOp, GPU, "Asinh", functor::asinh, bfloat16)
|
D | cwise_op_gpu_asinh.cu.cc | 24 DEFINE_UNARY3(asinh, float, double, Eigen::half); 26 DEFINE_UNARY1(asinh, bfloat16);
|
/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()
|
/external/musl/src/math/ |
D | asinhl.c | 6 return asinh(x); in asinhl() 39 return asinh(x); in asinhl()
|
D | asinh.c | 4 double asinh(double x) in asinh() function
|
/external/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_trigonometric.inl | 135 // asinh 137 using std::asinh; 140 GLM_FUNC_QUALIFIER genType asinh(genType x) function 142 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asinh' only accept floating-point inp… 149 GLM_FUNC_QUALIFIER vecType<T, P> asinh(vecType<T, P> const & v) function 151 return detail::functor1<T, T, P, vecType>::call(asinh, v);
|
/external/rust/crates/num-traits/src/ |
D | real.rs | 750 fn asinh(self) -> Self; in asinh() method 830 Float::asinh(self) -> Self;
|
D | float.rs | 1758 fn asinh(self) -> Self; in asinh() method 1882 Self::asinh(self) -> Self; 2097 fn asinh(self) -> Self { in asinh() method 2232 fn asinh(self) -> Self { in asinh() method 2233 libm::asinh(self) in asinh()
|
/external/tensorflow/tensorflow/compiler/mlir/hlo/lib/Dialect/mhlo/transforms/ |
D | chlo_legalize_to_hlo_patterns.td | 135 // Expand asinh to MHLO dialect as 136 // asinh(x) = log(x + sqrt(x^2 + 1)) 153 // the result as x + abs(x) = 0 but we are saved by the fact that asinh(-x) = 154 // -asinh(x).
|
/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/rust/crates/libm/src/math/ |
D | mod.rs | 79 mod asinh; module 185 pub use self::asinh::asinh;
|
D | asinh.rs | 10 pub fn asinh(mut x: f64) -> f64 { in asinh() function
|
/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/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/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_Asinh.pbtxt | 11 tf.math.asinh(x) ==> [-inf -1.4436355 -0.4812118 0.8813736 1.0159732 5.991471 9.903487 inf]
|
/external/musl/include/ |
D | tgmath.h | 149 #undef asinh 212 #define asinh(x) __tg_real_complex(asinh, (x)) macro
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | exhaustive_unary_test_f32_or_smaller.cc | 405 Run(Asinh, std::asinh, error_spec_gen); in XLA_TEST_P() 409 XLA_TEST_P(ExhaustiveF16UnaryTest, Asinh) { Run(Asinh, std::asinh); } in XLA_TEST_P() 413 XLA_TEST_P(ExhaustiveBF16UnaryTest, Asinh) { Run(Asinh, std::asinh); } in XLA_TEST_P()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | cwise_ops_unary_test.py | 211 self._compareBoth(x, np.arcsinh, math_ops.asinh) 266 self._compareBoth(x, np.arcsinh, math_ops.asinh) 321 self._compareBoth(x, np.arcsinh, math_ops.asinh) 382 self._compareBoth(x, np.arcsinh, math_ops.asinh) 439 self._compareBoth(x, compute_f32(np.arcsinh), math_ops.asinh) 518 self._compareCpu(y, np.arcsinh, math_ops.asinh, grad_rtol=1e-2) 558 self._compareCpu(y, np.arcsinh, math_ops.asinh)
|