Home | History | Annotate | Download | only in blas

Lines Matching refs:Scalar

18   Scalar* x = reinterpret_cast<Scalar*>(px);
27 Scalar EIGEN_BLAS_FUNC(dot)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy)
33 Scalar* x = reinterpret_cast<Scalar*>(px);
34 Scalar* y = reinterpret_cast<Scalar*>(py);
46 Scalar EIGEN_BLAS_FUNC(nrm2)(int *n, RealScalar *px, int *incx)
51 Scalar* x = reinterpret_cast<Scalar*>(px);
62 Scalar* x = reinterpret_cast<Scalar*>(px);
63 Scalar* y = reinterpret_cast<Scalar*>(py);
64 Scalar c = *reinterpret_cast<Scalar*>(pc);
65 Scalar s = *reinterpret_cast<Scalar*>(ps);
73 if(*incx<0 && *incy>0) internal::apply_rotation_in_the_plane(rvx, vy, JacobiRotation<Scalar>(c,s));
74 else if(*incx>0 && *incy<0) internal::apply_rotation_in_the_plane(vx, rvy, JacobiRotation<Scalar>(c,s));
75 else internal::apply_rotation_in_the_plane(vx, vy, JacobiRotation<Scalar>(c,s));
85 Scalar* x = reinterpret_cast<Scalar*>(px);
86 Scalar* y = reinterpret_cast<Scalar*>(py);