Searched defs:outerStride (Results 1 - 19 of 19) sorted by relevance

/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 DArray.h225 inline Index outerStride() const { return this->innerSize(); } function in class:Eigen::Array
H A DFlagged.h55 inline Index outerStride() const { return m_matrix.outerStride(); } function in class:Eigen::Flagged
H A DForceAlignedAccess.h46 inline Index outerStride() const { return m_expression.outerStride(); } function in class:Eigen::ForceAlignedAccess
H A DNestByValue.h47 inline Index outerStride() const { return m_expression.outerStride(); } function in class:Eigen::NestByValue
H A DSwap.h40 inline Index outerStride() const { return m_expression.outerStride(); } function in class:Eigen::SwapWrapper
H A DArrayWrapper.h55 inline Index outerStride() const { return m_expression.outerStride(); } function in class:Eigen::ArrayWrapper
175 inline Index outerStride() const { return m_expression.outerStride(); } function in class:Eigen::MatrixWrapper
H A DCwiseUnaryView.h111 inline Index outerStride() const function in class:Eigen::CwiseUnaryViewImpl
113 return derived().nestedExpression().outerStride() * sizeof(typename internal::traits<MatrixType>::Scalar) / sizeof(Scalar);
H A DDiagonal.h84 return m_matrix.outerStride() + 1;
87 inline Index outerStride() const function in class:Eigen::Diagonal
H A DMap.h126 inline Index outerStride() const function in class:Eigen::Map
H A DMatrix.h322 inline Index outerStride() const { return this->innerSize(); } function in class:Eigen::Matrix
H A DRef.h139 inline Index outerStride() const function in class:Eigen::RefBase
179 ::new (&m_stride) StrideBase(StrideType::OuterStrideAtCompileTime==0?0:expr.outerStride(),
H A DSelfCwiseBinaryOp.h59 inline Index outerStride() const { return m_matrix.outerStride(); } function in class:Eigen::SelfCwiseBinaryOp
H A DDenseCoeffsBase.h257 void outerStride();
582 * \sa outerStride(), rowStride(), colStride()
594 inline Index outerStride() const function in class:Eigen::DenseCoeffsBase
596 return derived().outerStride();
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();
653 * \sa outerStride(), rowStrid
665 inline Index outerStride() const function in class:Eigen::DenseCoeffsBase
[all...]
H A DSelfAdjointView.h77 inline Index outerStride() const { return m_matrix.outerStride(); } function in class:Eigen::SelfAdjointView
H A DBlock.h284 inline Index outerStride() const;
365 : m_xpr.outerStride();
368 /** \sa MapBase::outerStride() */
369 inline Index outerStride() const function in class:Eigen::internal::BlockImpl_dense
393 ? m_xpr.outerStride()
H A DTranspose.h110 inline Index outerStride() const { return derived().nestedExpression().outerStride(); } function in class:Eigen::TransposeImpl
H A DTriangularMatrix.h51 inline Index outerStride() const { return derived().outerStride(); } function in class:Eigen::TriangularBase
197 inline Index outerStride() const { return m_matrix.outerStride(); } function in class:Eigen::TriangularView
/external/eigen/test/
H A Dblock.cpp187 Index outerStride = m.outerStride(); local
201 ? i*outerStride + j*innerStride
202 : j*outerStride + i*innerStride]);

Completed in 1710 milliseconds