Home | History | Annotate | Download | only in Core

Lines Matching refs:Stride

15 /** \class Stride
22 * It holds two values: the inner stride and the outer stride.
24 * The inner stride is the pointer increment between two consecutive entries within a given row of a
27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
34 * \param _OuterStrideAtCompileTime the outer stride, or Dynamic if you want to specify it at runtime.
35 * \param _InnerStrideAtCompileTime the inner stride, or Dynamic if you want to specify it at runtime.
44 class Stride
54 Stride()
61 Stride(Index outerStride, Index innerStride)
68 Stride(const Stride& other)
72 /** \returns the outer stride */
74 /** \returns the inner stride */
82 /** \brief Convenience specialization of Stride to specify only an inner stride
85 class InnerStride : public Stride<0, Value>
87 typedef Stride<0, Value> Base;
94 /** \brief Convenience specialization of Stride to specify only an outer stride
97 class OuterStride : public Stride<Value, 0>
99 typedef Stride<Value, 0> Base;