Home
last modified time | relevance | path

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

123456789

/external/fonttools/Tests/mtiLib/data/mti/
Dchained-glyph.txt1 lookup raucontext-sinh chained
5 glyph rakarsinh uvowelsignsinh 1,u2aelow-sinh
6 glyph rakarsinh uuvowelsignsinh 1,u2aelow-sinh
10 lookup u2aelow-sinh single
/external/python/cpython3/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 …]
/external/eigen/unsupported/test/
Dautodiff_scalar.cpp41 using std::sinh; in check_hyperbolic_functions()
54 AD res2 = sinh(val); in check_hyperbolic_functions()
55 VERIFY_IS_APPROX(res2.value(), std::sinh(p.x())); in check_hyperbolic_functions()
60 VERIFY_IS_APPROX(res3.derivatives().x(), std::sinh(p.x())); in check_hyperbolic_functions()
68 res2 = sinh(val); in check_hyperbolic_functions()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DStemFunction.h80 using std::sinh; in stem_function_cosh()
88 res = std::sinh(x); in stem_function_cosh()
99 using std::sinh; in stem_function_sinh()
104 res = std::sinh(x); in stem_function_sinh()
DMatrixPower.h297 using std::sinh; in computeSuperDiag()
303 …return RealScalar(2) * exp(RealScalar(0.5) * p * (logCurr + logPrev)) * sinh(p * w) / (curr - prev… in computeSuperDiag()
312 using std::sinh; in computeSuperDiag()
315 return 2 * exp(p * (log(curr) + log(prev)) / 2) * sinh(p * w) / (curr - prev); in computeSuperDiag()
/external/python/cpython2/Lib/test/
Dcmath_testcases.txt1555 -- For exp, cosh, sinh, tanh we limit tests to arguments whose
1766 -- sinh: Hyperbolic Sine --
1770 sinh0000 sinh 0.0 0.0 -> 0.0 0.0
1771 sinh0001 sinh 0.0 -0.0 -> 0.0 -0.0
1772 sinh0002 sinh -0.0 0.0 -> -0.0 0.0
1773 sinh0003 sinh -0.0 -0.0 -> -0.0 -0.0
1776 sinh0004 sinh -17.282588091462742 -0.38187948694103546 -> -14867386.857248396 -5970648.6553516639
1777 sinh0005 sinh -343.91971203143208 -5.0172868877771525e-22 -> -1.1518691776521735e+149 -5.7792581214…
1778 sinh0006 sinh -14.178122253300922 -1.9387157579351293 -> 258440.37909034826 -670452.58500946441
1779 sinh0007 sinh -1.0343810581686239 -1.0970235266369905 -> -0.56070858278092739 -1.4098883258046697
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dcwise_op_sinh.cc19 REGISTER4(UnaryOp, CPU, "Sinh", functor::sinh, float, double, complex64,
26 UnaryOp<SYCLDevice, functor::sinh<TYPE>>);
33 REGISTER2(UnaryOp, GPU, "Sinh", functor::sinh, float, double);
Dcwise_op_gpu_sinh.cu.cc22 DEFINE_UNARY2(sinh, float, double);
/external/apache-commons-math/src/main/java/org/apache/commons/math/complex/
DComplex.java552 -FastMath.sin(real) * MathUtils.sinh(imaginary)); in cos()
586 MathUtils.sinh(real) * FastMath.sin(imaginary)); in cosh()
718 FastMath.cos(real) * MathUtils.sinh(imaginary)); in sin()
746 public Complex sinh() { in sinh() method in Complex
751 return createComplex(MathUtils.sinh(real) * FastMath.cos(imaginary), in sinh()
863 return createComplex(FastMath.sin(real2) / d, MathUtils.sinh(imaginary2) / d); in tan()
901 return createComplex(MathUtils.sinh(real2) / d, FastMath.sin(imaginary2) / d); in tanh()
/external/tensorflow/tensorflow/core/api_def/python_api/
Dapi_def_Sinh.pbtxt4 name: "math.sinh"
7 name: "sinh"
/external/clang/lib/Headers/
D__clang_cuda_math_forward_declares.h173 __DEVICE__ double sinh(double);
174 __DEVICE__ float sinh(float);
253 using ::sinh;
/external/tensorflow/tensorflow/contrib/distributions/python/ops/bijectors/
Dsinh_arcsinh.py157 return math_ops.sinh((math_ops.asinh(x) + self.skewness) * self.tailweight)
160 return math_ops.sinh(math_ops.asinh(y) / self.tailweight - self.skewness)
/external/tensorflow/tensorflow/contrib/distributions/python/kernel_tests/bijectors/
Dsinh_arcsinh_bijector_test.py45 y = np.sinh((np.arcsinh(x) + skewness) * tailweight)
139 np.sinh(np.arcsinh(np.finfo(dtype).max) / tailweight - skewness))
147 y = np.sinh((np.arcsinh(x) + skewness) * tailweight)
/external/tensorflow/tensorflow/python/kernel_tests/
Dcwise_ops_unary_test.py207 self._compareBoth(x, np.sinh, math_ops.sinh)
264 self._compareBoth(x, np.sinh, math_ops.sinh)
315 self._compareBoth(x, np.sinh, math_ops.sinh)
439 self._compareCpu(x, np.sinh, math_ops.sinh)
484 self._compareCpu(x, np.sinh, math_ops.sinh)
/external/eigen/doc/snippets/
DCwise_sinh.cpp2 cout << sinh(v) << endl;
/external/deqp-deps/glslang/Test/
Dhlsl.intrinsics.vert50 sinh(inF0);
124 sinh(inF0);
194 sinh(inF0);
264 sinh(inF0);
319 sinh(inF0); \
/external/ltp/testcases/misc/math/float/
Dfloat_iperb.c31 {FUNC_NORMAL, 50, sinh, "sinh", "dsinh", "rsinh",
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/
Dsinh.pass.cpp25 assert(sinh(c) == x); in test()
40 std::complex<double> r = sinh(testcases[i]); in test_edges()
/external/eigen/unsupported/doc/examples/
DMatrixSinh.cpp11 MatrixXf sinhA = A.sinh(); in main()
/external/ltp/testcases/misc/math/float/trigo/
DMakefile27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
/external/ltp/testcases/misc/math/float/iperb/
DMakefile27 CLEAN_TARGETS := [rd]*sin [rd]sinh [rd]*cos [rd]cosh [rd]*tan [rd]*tan2 \
Dgensinh.c52 tabR[i] = sinh(Inc * (i - nbVal / 2)); in create_Result_file()
/external/libcxx/test/std/numerics/numarray/valarray.nonmembers/valarray.transcend/
Dsinh_valarray.pass.cpp47 std::valarray<T> v3 = sinh(v1); in main()
/external/v8/src/base/
Dieee754.h73 V8_BASE_EXPORT double sinh(double x);
/external/eigen/test/
Darray.cpp234 VERIFY_IS_APPROX(m1.sinh(), sinh(m1)); in array_real()
269 VERIFY_IS_APPROX(sinh(m1), 0.5*(exp(m1)-exp(-m1))); in array_real()
346 VERIFY_IS_APPROX(m1.sinh(), sinh(m1)); in array_complex()
369 VERIFY_IS_APPROX(sinh(m1), 0.5*(exp(m1)-exp(-m1))); in array_complex()

123456789