Searched refs:innerStride (Results 1 - 25 of 26) sorted by relevance

12

/external/eigen/Eigen/src/Core/
H A DStride.h61 Stride(Index outerStride, Index innerStride) argument
62 : m_outer(outerStride), m_inner(innerStride)
64 eigen_assert(innerStride>=0 && outerStride>=0);
H A DNestByValue.h48 inline Index innerStride() const { return m_expression.innerStride(); } function in class:Eigen::NestByValue
H A DMapBase.h69 using Base::innerStride;
84 * \note When addressing this data, make sure to honor the strides returned by innerStride() and outerStride().
86 * \sa innerStride(), outerStride()
98 return m_data[index * innerStride()];
109 return this->m_data[index * innerStride()];
123 return internal::ploadt<PacketScalar, LoadMode>(m_data + index * innerStride());
187 using Base::innerStride;
209 return this->m_data[index * innerStride()];
224 (this->m_data + index * innerStride(), x);
H A DFlagged.h56 inline Index innerStride() const { return m_matrix.innerStride(); } function in class:Eigen::Flagged
H A DForceAlignedAccess.h47 inline Index innerStride() const { return m_expression.innerStride(); } function in class:Eigen::ForceAlignedAccess
H A DDenseCoeffsBase.h256 void innerStride();
584 inline Index innerStride() const function in class:Eigen::DenseCoeffsBase
586 return derived().innerStride();
592 * \sa innerStride(), rowStride(), colStride()
602 return Derived::IsVectorAtCompileTime ? innerStride() : outerStride();
607 * \sa innerStride(), outerStride(), colStride()
611 return Derived::IsRowMajor ? outerStride() : innerStride();
616 * \sa innerStride(), outerStride(), rowStride()
620 return Derived::IsRowMajor ? innerStride() : outerStride();
655 inline Index innerStride() cons function in class:Eigen::DenseCoeffsBase
[all...]
H A DArrayWrapper.h56 inline Index innerStride() const { return m_expression.innerStride(); } function in class:Eigen::ArrayWrapper
169 inline Index innerStride() const { return m_expression.innerStride(); } function in class:Eigen::MatrixWrapper
H A DCwiseUnaryView.h102 inline Index innerStride() const function in class:Eigen::CwiseUnaryViewImpl
104 return derived().nestedExpression().innerStride() * sizeof(typename internal::traits<MatrixType>::Scalar) / sizeof(Scalar);
H A DSwap.h41 inline Index innerStride() const { return m_expression.innerStride(); } function in class:Eigen::SwapWrapper
H A DBlock.h228 inline Index innerStride() const;
314 /** \sa MapBase::innerStride() */
315 inline Index innerStride() const function in class:Eigen::Block
318 ? m_xpr.innerStride()
348 : m_xpr.innerStride();
H A DReverse.h105 inline Index innerStride() const function in class:Eigen::Reverse
107 return -m_matrix.innerStride();
H A DSelfCwiseBinaryOp.h60 inline Index innerStride() const { return m_matrix.innerStride(); } function in class:Eigen::SelfCwiseBinaryOp
H A DMap.h121 inline Index innerStride() const function in class:Eigen::Map
H A DSelfAdjointView.h78 inline Index innerStride() const { return m_matrix.innerStride(); } function in class:Eigen::SelfAdjointView
H A DTranspose.h108 inline Index innerStride() const { return derived().nestedExpression().innerStride(); } function in class:Eigen::TransposeImpl
H A DArray.h224 inline Index innerStride() const { return 1; } function in class:Eigen::Array
H A DDiagonal.h81 inline Index innerStride() const function in class:Eigen::Diagonal
H A DTriangularMatrix.h52 inline Index innerStride() const { return derived().innerStride(); } function in class:Eigen::TriangularBase
198 inline Index innerStride() const { return m_matrix.innerStride(); } function in class:Eigen::TriangularView
H A DMatrix.h321 inline Index innerStride() const { return 1; } function in class:Eigen::Matrix
H A DSolveTriangular.h63 bool useRhsDirectly = Rhs::InnerStrideAtCompileTime==1 || rhs.innerStride()==1;
H A DGeneralProduct.h443 actualRhs.data(), actualRhs.innerStride(),
503 dest.data(), dest.innerStride(),
/external/eigen/test/
H A Dblock.cpp157 Index innerStride = m.innerStride(); local
172 ? i*outerStride + j*innerStride
173 : j*outerStride + i*innerStride]);
178 VERIFY(innerStride == int((&m.coeff(1))-(&m.coeff(0))));
180 VERIFY(m.coeff(i) == data[i*innerStride]);
H A Dmapstride.cpp104 VERIFY(map.innerStride() == 2);
108 VERIFY(array[map.outerStride()*i+map.innerStride()*j] == m.coeffByOuterInner(i,j));
/external/eigen/Eigen/src/Core/products/
H A DTriangularMatrixVector.h268 actualRhs.data(),actualRhs.innerStride(),
329 dest.data(),dest.innerStride(),
/external/eigen/Eigen/src/Jacobi/
H A DJacobi.h301 Index incrx = _x.innerStride();
302 Index incry = _y.innerStride();

Completed in 932 milliseconds

12