Home
last modified time | relevance | path

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

12

/external/chromium_org/v8/test/mjsunit/es6/
Dmath-hyperbolic.js31 [Math.sinh, Math.cosh, Math.tanh, Math.asinh, Math.acosh, Math.atanh].
50 test_id(Math.sinh, Math.asinh, x);
51 test_id(Math.sinh, Math.asinh, -x);
58 [Math.sinh, Math.asinh, Math.tanh, Math.atanh].forEach(function(fun) {
64 [Math.sinh, Math.asinh].forEach(function(fun) {
118 assertEqualsDelta(0.4812118250596, Math.asinh(0.5), 1E-12);
119 assertEqualsDelta(2.3124383412727, Math.asinh(5), 1E-12);
120 assertEqualsDelta(-0.4812118250596, Math.asinh(-0.5), 1E-12);
121 assertEqualsDelta(-2.3124383412727, Math.asinh(-5), 1E-12);
134 assertEqualsDelta(Math.asinh(x), -Math.asinh(-x), 1E-12);
/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/libcxx/test/numerics/complex.number/complex.transcendentals/
DAndroid.mk83 test_name := numerics/complex.number/complex.transcendentals/asinh
84 test_src := asinh.pass.cpp
Dasinh.pass.cpp25 assert(asinh(c) == x); in test()
42 std::complex<double> r = asinh(x[i]); in test_edges()
/external/mesa3d/src/glsl/builtins/ir/
Dasinh.ir1 ((function asinh
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/
Dasinh.ir1 ((function asinh
/external/llvm/test/Transforms/InstCombine/
Ddouble-float-shrink-1.ll60 %call = call double @asinh(double %conv)
69 %call = call double @asinh(double %conv)
71 ; CHECK: call double @asinh(double %conv)
346 declare double @asinh(double) nounwind readnone
/external/clang/test/CodeGen/
Dlibcall-declarations.c49 double asinh(double);
271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh),
/external/libcxx/test/numerics/c.math/
Dcmath.disabled.cpp642 static_assert((std::is_same<decltype(std::asinh((float)0)), float>::value), ""); in test_asinh()
643 static_assert((std::is_same<decltype(std::asinh((bool)0)), double>::value), ""); in test_asinh()
644 static_assert((std::is_same<decltype(std::asinh((unsigned short)0)), double>::value), ""); in test_asinh()
645 static_assert((std::is_same<decltype(std::asinh((int)0)), double>::value), ""); in test_asinh()
646 static_assert((std::is_same<decltype(std::asinh((unsigned int)0)), double>::value), ""); in test_asinh()
647 static_assert((std::is_same<decltype(std::asinh((long)0)), double>::value), ""); in test_asinh()
648 static_assert((std::is_same<decltype(std::asinh((unsigned long)0)), double>::value), ""); in test_asinh()
649 static_assert((std::is_same<decltype(std::asinh((long long)0)), double>::value), ""); in test_asinh()
650 static_assert((std::is_same<decltype(std::asinh((unsigned long long)0)), double>::value), ""); in test_asinh()
651 static_assert((std::is_same<decltype(std::asinh((double)0)), double>::value), ""); in test_asinh()
[all …]
/external/chromium_org/third_party/cython/src/Cython/Includes/libc/
Dmath.pxd35 double asinh(double x)
/external/clang/lib/Headers/
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/llvm/include/llvm/Target/
DTargetLibraryInfo.h120 asinh, enumerator
/external/deqp/framework/common/
DtcuVectorUtil.hpp100 inline float asinh (float a) { return deFloatAsinh(a); } in asinh() function
439 TCU_DECLARE_VECTOR_UNARY_FUNC(asinh, deFloatAsinh)
/external/libcxx/include/
Dcmath160 floating_point asinh (arithmetic x);
1062 // asinh
1065 using ::asinh;
1068 inline _LIBCPP_INLINE_VISIBILITY float asinh(float __x) _NOEXCEPT {return asinhf(__x);}
1069 inline _LIBCPP_INLINE_VISIBILITY long double asinh(long double __x) _NOEXCEPT {return asinhl(__x);}
1074 asinh(_A1 __x) _NOEXCEPT {return asinh((double)__x);}
Dcomplex213 template<class T> complex<T> asinh(const complex<T>&);
1211 // asinh
1215 asinh(const complex<_Tp>& __x)
1369 complex<_Tp> __z = asinh(complex<_Tp>(-__x.imag(), __x.real()));
/external/ltrace/etc/
Dlibm.so.conf56 double asinh(double);
/external/libcxx/test/depr/depr.c.headers/
Dmath_h.disabled.cpp339 static_assert((std::is_same<decltype(asinh((double)0)), double>::value), ""); in test_asinh()
342 assert(asinh(0) == 0); in test_asinh()
/external/deqp/doc/testspecs/GLES3/
Dfunctional.shaders.builtin_functions.precision.txt104 | asinh(x) | log(x + sqrt(x * x + 1.0)) |
/external/chromium_org/third_party/mesa/src/src/mesa/main/
Dimports.h143 #define asinhf(f) ((float) asinh(f))
/external/mesa3d/src/mesa/main/
Dimports.h143 #define asinhf(f) ((float) asinh(f))
/external/llvm/lib/Target/
DTargetLibraryInfo.cpp462 TLI.setUnavailable(LibFunc::asinh); in initialize()
/external/mesa3d/src/glsl/builtins/profiles/
D130.glsl65 float asinh(float x);
66 vec2 asinh(vec2 x);
67 vec3 asinh(vec3 x);
68 vec4 asinh(vec4 x);
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/profiles/
D130.glsl65 float asinh(float x);
66 vec2 asinh(vec2 x);
67 vec3 asinh(vec3 x);
68 vec4 asinh(vec4 x);
/external/chromium_org/v8/test/webkit/fast/js/
DObject-getOwnPropertyNames-expected.txt84 …10E', 'LOG2E', 'PI', 'SQRT1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2',…

12