Home
last modified time | relevance | path

Searched refs:sinh (Results 1 – 25 of 288) sorted by relevance

12345678910>>...12

/third_party/skia/resources/sksl/intrinsics/
DSinh.sksl6 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/
Dgen-test-libm.c1021 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/
Dtest-libm.inc.h818 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/
Dmath-sinh.js23 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/
DSinh.glsl8 …return ((((((sinh(inputVal.x) == expected.x && sinh(inputVal.xy) == expected.xy) && sinh(inputVal.…
DSinh.metal18sinh(_uniforms.inputVal.x) == _uniforms.expected.x && all(sinh(_uniforms.inputVal.xy) == _uniforms…
/third_party/python/Lib/test/
Dcmath_testcases.txt1580 -- 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/
Db9860e.wgsl.expected.glsl5 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));
D7bb598.wgsl.expected.glsl5 float res = sinh(1.0f);
35 float res = sinh(1.0f);
55 float res = sinh(1.0f);
D445e33.wgsl.expected.glsl5 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));
Dc9a5eb.wgsl.expected.glsl5 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));
D7bb598.wgsl26 // fn sinh(f32) -> f32
28 var res: f32 = sinh(1.0);
Db9860e.wgsl26 // fn sinh(vec<2, f32>) -> vec<2, f32>
28 var res: vec2<f32> = sinh(vec2<f32>());
D445e33.wgsl26 // fn sinh(vec<4, f32>) -> vec<4, f32>
28 var res: vec4<f32> = sinh(vec4<f32>());
Dc9a5eb.wgsl26 // fn sinh(vec<3, f32>) -> vec<3, f32>
28 var res: vec3<f32> = sinh(vec3<f32>());
D7bb598.wgsl.expected.wgsl2 var res : f32 = sinh(1.0);
/third_party/musl/src/math/
Dsinhl.c6 return sinh(x); in sinhl()
41 return sinh(x); in sinhl()
/third_party/musl/porting/liteos_a/kernel/src/math/
Dsinhl.c6 return sinh(x); in sinhl()
41 return sinh(x); in sinhl()
/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_sinh_test.cpp25 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/
Dcsinh.c58 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/
Dfunc_trigonometric.inl108 // 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/
Dtgmath.c276 #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/
DREADME.md35 `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/
Dfloat_iperb.c31 {FUNC_NORMAL, 50, sinh, "sinh", "dsinh", "rsinh",
/third_party/glslang/Test/
Dhlsl.intrinsics.vert50 sinh(inF0);
124 sinh(inF0);
194 sinh(inF0);
264 sinh(inF0);
319 sinh(inF0); \

12345678910>>...12