/third_party/skia/resources/sksl/intrinsics/ |
D | Sinh.sksl | 6 return (sinh(inputVal.x) == expected.x && 7 sinh(inputVal.xy) == expected.xy && 8 sinh(inputVal.xyz) == expected.xyz && 9 sinh(inputVal.xyzw) == expected.xyzw && 10 sinh(constVal.x) == expected.x && 11 sinh(constVal.xy) == expected.xy && 12 sinh(constVal.xyz) == expected.xyz && 13 sinh(constVal.xyzw) == expected.xyzw) ? colorGreen : colorRed;
|
/third_party/jerryscript/tools/unit-tests/ |
D | gen-test-libm.c | 1021 GEN_DBL_TEST (sinh (0.0)); in main() 1022 GEN_DBL_TEST (sinh (-0.0)); in main() 1023 GEN_DBL_TEST (sinh (1.0)); in main() 1024 GEN_DBL_TEST (sinh (-1.0)); in main() 1025 GEN_DBL_TEST (sinh (INFINITY)); in main() 1026 GEN_DBL_TEST (sinh (-INFINITY)); in main() 1027 GEN_DBL_TEST (sinh (NAN)); in main() 1028 GEN_DBL_TEST (sinh (M_PI)); in main() 1029 GEN_DBL_TEST (sinh (-M_PI)); in main() 1030 GEN_DBL_TEST (sinh (2.0 * M_PI)); in main() [all …]
|
/third_party/jerryscript/tests/unit-libm/ |
D | test-libm.inc.h | 818 check_double ("sinh (0.0)", sinh (0.0), 0.00000000000000000000E+00); 819 check_double ("sinh (-0.0)", sinh (-0.0), -0.00000000000000000000E+00); 820 check_double ("sinh (1.0)", sinh (1.0), 1.17520119364380137839E+00); 821 check_double ("sinh (-1.0)", sinh (-1.0), -1.17520119364380137839E+00); 822 check_double ("sinh (INFINITY)", sinh (INFINITY), INF); 823 check_double ("sinh (-INFINITY)", sinh (-INFINITY), -INF); 824 check_double ("sinh (NAN)", sinh (NAN), NAN); 825 check_double ("sinh (M_PI)", sinh (M_PI), 1.15487393572577463630E+01); 826 check_double ("sinh (-M_PI)", sinh (-M_PI), -1.15487393572577463630E+01); 827 check_double ("sinh (2.0 * M_PI)", sinh (2.0 * M_PI), 2.67744894041016436859E+02); [all …]
|
/third_party/jerryscript/tests/jerry/es2015/ |
D | math-sinh.js | 23 assert(isNaN(Math.sinh(NaN))); 24 assert(isSameZero(Math.sinh(p_zero), p_zero)); 25 assert(isSameZero(Math.sinh(n_zero), n_zero)); 26 assert(Math.sinh(Number.POSITIVE_INFINITY) === Number.POSITIVE_INFINITY); 27 assert(Math.sinh(Number.NEGATIVE_INFINITY) === Number.NEGATIVE_INFINITY);
|
/third_party/skia/tests/sksl/intrinsics/ |
D | Sinh.glsl | 8 …return ((((((sinh(inputVal.x) == expected.x && sinh(inputVal.xy) == expected.xy) && sinh(inputVal.…
|
D | Sinh.metal | 18 …sinh(_uniforms.inputVal.x) == _uniforms.expected.x && all(sinh(_uniforms.inputVal.xy) == _uniforms…
|
/third_party/python/Lib/test/ |
D | cmath_testcases.txt | 1580 -- For exp, cosh, sinh, tanh we limit tests to arguments whose 1822 -- sinh: Hyperbolic Sine -- 1826 sinh0000 sinh 0.0 0.0 -> 0.0 0.0 1827 sinh0001 sinh 0.0 -0.0 -> 0.0 -0.0 1828 sinh0002 sinh -0.0 0.0 -> -0.0 0.0 1829 sinh0003 sinh -0.0 -0.0 -> -0.0 -0.0 1832 sinh0004 sinh -17.282588091462742 -0.38187948694103546 -> -14867386.857248396 -5970648.6553516639 1833 sinh0005 sinh -343.91971203143208 -5.0172868877771525e-22 -> -1.1518691776521735e+149 -5.7792581214… 1834 sinh0006 sinh -14.178122253300922 -1.9387157579351293 -> 258440.37909034826 -670452.58500946441 1835 sinh0007 sinh -1.0343810581686239 -1.0970235266369905 -> -0.56070858278092739 -1.4098883258046697 [all …]
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/sinh/ |
D | b9860e.wgsl.expected.glsl | 5 vec2 res = sinh(vec2(0.0f, 0.0f)); 35 vec2 res = sinh(vec2(0.0f, 0.0f)); 55 vec2 res = sinh(vec2(0.0f, 0.0f));
|
D | 7bb598.wgsl.expected.glsl | 5 float res = sinh(1.0f); 35 float res = sinh(1.0f); 55 float res = sinh(1.0f);
|
D | 445e33.wgsl.expected.glsl | 5 vec4 res = sinh(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 35 vec4 res = sinh(vec4(0.0f, 0.0f, 0.0f, 0.0f)); 55 vec4 res = sinh(vec4(0.0f, 0.0f, 0.0f, 0.0f));
|
D | c9a5eb.wgsl.expected.glsl | 5 vec3 res = sinh(vec3(0.0f, 0.0f, 0.0f)); 35 vec3 res = sinh(vec3(0.0f, 0.0f, 0.0f)); 55 vec3 res = sinh(vec3(0.0f, 0.0f, 0.0f));
|
D | 7bb598.wgsl | 26 // fn sinh(f32) -> f32 28 var res: f32 = sinh(1.0);
|
D | b9860e.wgsl | 26 // fn sinh(vec<2, f32>) -> vec<2, f32> 28 var res: vec2<f32> = sinh(vec2<f32>());
|
D | 445e33.wgsl | 26 // fn sinh(vec<4, f32>) -> vec<4, f32> 28 var res: vec4<f32> = sinh(vec4<f32>());
|
D | c9a5eb.wgsl | 26 // fn sinh(vec<3, f32>) -> vec<3, f32> 28 var res: vec3<f32> = sinh(vec3<f32>());
|
D | 7bb598.wgsl.expected.wgsl | 2 var res : f32 = sinh(1.0);
|
/third_party/musl/src/math/ |
D | sinhl.c | 6 return sinh(x); in sinhl() 41 return sinh(x); in sinhl()
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | sinhl.c | 6 return sinh(x); in sinhl() 41 return sinh(x); in sinhl()
|
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/ |
D | math_sinh_test.cpp | 25 bool testResult = DoubleUlpCmp(g_sinhData[i].expected, sinh(g_sinhData[i].input), 2); 37 EXPECT_DOUBLE_EQ(0.0, sinh(0.0));
|
/third_party/musl/src/complex/ |
D | csinh.c | 58 return CMPLX(sinh(x), y); in csinh() 60 return CMPLX(sinh(x) * cos(y), cosh(x) * sin(y)); in csinh()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/detail/ |
D | func_trigonometric.inl | 108 // sinh 109 using std::sinh; 112 GLM_FUNC_QUALIFIER vecType<T, P> sinh(vecType<T, P> const & v) function 114 return detail::functor1<T, T, P, vecType>::call(sinh, v);
|
/third_party/musl/libc-test/src/api/ |
D | tgmath.c | 276 #ifdef sinh in f() 277 {double r = sinh(x);} in f() 279 #error no sinh(x) in f()
|
/third_party/skia/third_party/externals/angle2/src/third_party/ceval/ |
D | README.md | 35 `exp()`, `sqrt()`, `cbrt()`, `sin()`, `cos()`, `tan()`, `asin()`, `acos()`, `atan()`, `sinh()`, `co… 190 In = tanh(2/3)==(sinh(2/3)/cosh(2/3)) 199 sinh
|
/third_party/ltp/testcases/misc/math/float/ |
D | float_iperb.c | 31 {FUNC_NORMAL, 50, sinh, "sinh", "dsinh", "rsinh",
|
/third_party/glslang/Test/ |
D | hlsl.intrinsics.vert | 50 sinh(inF0); 124 sinh(inF0); 194 sinh(inF0); 264 sinh(inF0); 319 sinh(inF0); \
|