Home | History | Annotate | Download | only in Jacobi

Lines Matching refs:Index

65     bool makeJacobi(const MatrixBase<Derived>&, typename Derived::Index p, typename Derived::Index q);
80 * \sa MatrixBase::makeJacobi(const MatrixBase<Derived>&, Index, Index), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
126 inline bool JacobiRotation<Scalar>::makeJacobi(const MatrixBase<Derived>& m, typename Derived::Index p, typename Derived::Index q)
277 inline void MatrixBase<Derived>::applyOnTheLeft(Index p, Index q, const JacobiRotation<OtherScalar>& j)
292 inline void MatrixBase<Derived>::applyOnTheRight(Index p, Index q, const JacobiRotation<OtherScalar>& j)
303 typedef typename VectorX::Index Index;
308 Index size = _x.size();
309 Index incrx = _x.innerStride();
310 Index incry = _y.innerStride();
329 Index alignedStart = internal::first_aligned(y, size);
330 Index alignedEnd = alignedStart + ((size-alignedStart)/PacketSize)*PacketSize;
336 for(Index i=0; i<alignedStart; ++i)
349 for(Index i=alignedStart; i<alignedEnd; i+=PacketSize)
361 Index peelingEnd = alignedStart + ((size-alignedStart)/(Peeling*PacketSize))*(Peeling*PacketSize);
362 for(Index i=alignedStart; i<peelingEnd; i+=Peeling*PacketSize)
384 for(Index i=alignedEnd; i<size; ++i)
403 for(Index i=0; i<size; i+=PacketSize)
417 for(Index i=0; i<size; ++i)