/external/chromium_org/v8/test/mjsunit/es6/ |
D | math-hyperbolic.js | 31 [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/ |
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/libcxx/test/numerics/complex.number/complex.transcendentals/ |
D | Android.mk | 83 test_name := numerics/complex.number/complex.transcendentals/asinh 84 test_src := asinh.pass.cpp
|
D | asinh.pass.cpp | 25 assert(asinh(c) == x); in test() 42 std::complex<double> r = asinh(x[i]); in test_edges()
|
/external/mesa3d/src/glsl/builtins/ir/ |
D | asinh.ir | 1 ((function asinh
|
/external/chromium_org/third_party/mesa/src/src/glsl/builtins/ir/ |
D | asinh.ir | 1 ((function asinh
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-1.ll | 60 %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/ |
D | libcall-declarations.c | 49 double asinh(double); 271 F(acoshl), F(asin), F(asinf), F(asinl), F(asinh),
|
/external/libcxx/test/numerics/c.math/ |
D | cmath.disabled.cpp | 642 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/ |
D | math.pxd | 35 double asinh(double x)
|
/external/clang/lib/Headers/ |
D | tgmath.h | 187 __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/ |
D | TargetLibraryInfo.h | 120 asinh, enumerator
|
/external/deqp/framework/common/ |
D | tcuVectorUtil.hpp | 100 inline float asinh (float a) { return deFloatAsinh(a); } in asinh() function 439 TCU_DECLARE_VECTOR_UNARY_FUNC(asinh, deFloatAsinh)
|
/external/libcxx/include/ |
D | cmath | 160 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);}
|
D | complex | 213 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/ |
D | libm.so.conf | 56 double asinh(double);
|
/external/libcxx/test/depr/depr.c.headers/ |
D | math_h.disabled.cpp | 339 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/ |
D | functional.shaders.builtin_functions.precision.txt | 104 | asinh(x) | log(x + sqrt(x * x + 1.0)) |
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
D | imports.h | 143 #define asinhf(f) ((float) asinh(f))
|
/external/mesa3d/src/mesa/main/ |
D | imports.h | 143 #define asinhf(f) ((float) asinh(f))
|
/external/llvm/lib/Target/ |
D | TargetLibraryInfo.cpp | 462 TLI.setUnavailable(LibFunc::asinh); in initialize()
|
/external/mesa3d/src/glsl/builtins/profiles/ |
D | 130.glsl | 65 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/ |
D | 130.glsl | 65 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/ |
D | Object-getOwnPropertyNames-expected.txt | 84 …10E', 'LOG2E', 'PI', 'SQRT1_2', 'SQRT2', 'abs', 'acos', 'acosh', 'asin', 'asinh', 'atan', 'atan2',…
|