Home
last modified time | relevance | path

Searched refs:asinh (Results 1 – 25 of 89) sorted by relevance

1234

/external/python/cpython2/Lib/test/
Dcmath_testcases.txt11 -- <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 …]
Dtest_math.py175 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/fdlibm/
Ds_asinh.c37 double asinh(double x) in asinh() function
39 double asinh(x) in asinh()
Dfdlibm.h144 extern double asinh __P((double));
/external/vulkan-validation-layers/libs/glm/detail/
Dfunc_trigonometric.inl200 // asinh
202 GLM_FUNC_QUALIFIER genType asinh
207 …GLM_STATIC_ASSERT(std::numeric_limits<genType>::is_iec559, "'asinh' only accept floating-point inp…
212 VECTORIZE_VEC(asinh) argument
Dfunc_trigonometric.hpp174 GLM_FUNC_DECL genType asinh(genType const & x);
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h51 __DEVICE__ double asinh(double);
52 __DEVICE__ float asinh(float);
191 using ::asinh;
Dtgmath.h187 __tg_asinh(double __x) {return asinh(__x);} in __tg_asinh()
205 #undef asinh
206 #define asinh(__x) __tg_asinh(__tg_promote1((__x))(__x)) macro
/external/python/cpython2/Modules/
D_math.h16 #define m_asinh asinh
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Dasinh.pass.cpp25 assert(asinh(c) == x); in test()
42 std::complex<double> r = asinh(testcases[i]); in test_edges()
/external/v8/src/base/
Dieee754.h26 V8_BASE_EXPORT double asinh(double x);
/external/libcxx/test/std/depr/depr.c.headers/
Dmath_h.pass.cpp66 Ambiguous asinh(Ambiguous){ return Ambiguous(); } in asinh() function
774 static_assert((std::is_same<decltype(asinh((float)0)), float>::value), ""); in test_asinh()
775 static_assert((std::is_same<decltype(asinh((bool)0)), double>::value), ""); in test_asinh()
776 static_assert((std::is_same<decltype(asinh((unsigned short)0)), double>::value), ""); in test_asinh()
777 static_assert((std::is_same<decltype(asinh((int)0)), double>::value), ""); in test_asinh()
778 static_assert((std::is_same<decltype(asinh((unsigned int)0)), double>::value), ""); in test_asinh()
779 static_assert((std::is_same<decltype(asinh((long)0)), double>::value), ""); in test_asinh()
780 static_assert((std::is_same<decltype(asinh((unsigned long)0)), double>::value), ""); in test_asinh()
781 static_assert((std::is_same<decltype(asinh((long long)0)), double>::value), ""); in test_asinh()
782 static_assert((std::is_same<decltype(asinh((unsigned long long)0)), double>::value), ""); in test_asinh()
[all …]
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll65 %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/
Dlibcall-declarations.c49 double asinh(double);
271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh),
/external/libcxx/test/std/numerics/c.math/
Dcmath.pass.cpp67 Ambiguous asinh(Ambiguous){ return Ambiguous(); } in asinh() function
776 static_assert((std::is_same<decltype(std::asinh((float)0)), float>::value), ""); in test_asinh()
777 static_assert((std::is_same<decltype(std::asinh((bool)0)), double>::value), ""); in test_asinh()
778 static_assert((std::is_same<decltype(std::asinh((unsigned short)0)), double>::value), ""); in test_asinh()
779 static_assert((std::is_same<decltype(std::asinh((int)0)), double>::value), ""); in test_asinh()
780 static_assert((std::is_same<decltype(std::asinh((unsigned int)0)), double>::value), ""); in test_asinh()
781 static_assert((std::is_same<decltype(std::asinh((long)0)), double>::value), ""); in test_asinh()
782 static_assert((std::is_same<decltype(std::asinh((unsigned long)0)), double>::value), ""); in test_asinh()
783 static_assert((std::is_same<decltype(std::asinh((long long)0)), double>::value), ""); in test_asinh()
784 static_assert((std::is_same<decltype(std::asinh((unsigned long long)0)), double>::value), ""); in test_asinh()
[all …]
/external/vulkan-validation-layers/libs/glm/gtc/
Dreciprocal.inl184 return asinh(genType(1) / x);
/external/libcxx/include/
Dmath.h981 inline _LIBCPP_INLINE_VISIBILITY float asinh(float __lcpp_x) _NOEXCEPT {return ::asinhf… in asinh() function
982 inline _LIBCPP_INLINE_VISIBILITY long double asinh(long double __lcpp_x) _NOEXCEPT {return ::asinhl… in asinh() function
987 asinh(_A1 __lcpp_x) _NOEXCEPT {return ::asinh((double)__lcpp_x);} in asinh() function
Dcmath160 floating_point asinh (arithmetic x);
393 using ::asinh;
Dcomplex213 template<class T> complex<T> asinh(const complex<T>&);
1128 // asinh
1132 asinh(const complex<_Tp>& __x)
1286 complex<_Tp> __z = asinh(complex<_Tp>(-__x.imag(), __x.real()));
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt104 | asinh(x) | log(x + sqrt(x * x + 1.0)) |
/external/llvm/test/Transforms/InferFunctionAttrs/
Dno-proto.ll48 ; CHECK: declare void @asinh(...)
49 declare void @asinh(...)
/external/llvm/include/llvm/Analysis/
DTargetLibraryInfo.def275 /// double asinh(double x);
276 TLI_DEFINE_ENUM_INTERNAL(asinh)
277 TLI_DEFINE_STRING_INTERNAL("asinh")
/external/python/cpython2/Doc/library/
Dcmath.rst168 .. function:: asinh(x)
/external/swiftshader/src/Shader/
DShaderCore.hpp332 void asinh(Vector4f &dst, const Vector4f &src, bool pp = false);
/external/deqp/framework/common/
DtcuVectorUtil.hpp437 TCU_DECLARE_VECTOR_UNARY_FUNC(asinh, deFloatAsinh)

1234