Searched refs:cCols (Results 1 - 3 of 3) sorted by relevance

/external/eigen/Eigen/src/Eigen2Support/
H A DBlock.h21 * \param cCols the number of columns in the corner
34 ::corner(CornerType type, Index cRows, Index cCols) argument
41 return Block<Derived>(derived(), 0, 0, cRows, cCols);
43 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
45 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols);
47 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols);
54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const
61 return Block<Derived>(derived(), 0, 0, cRows, cCols);
[all...]
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h73 * \param cCols the number of columns in the corner
80 inline Block<Derived> topRightCorner(Index cRows, Index cCols) argument
82 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols);
86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const
88 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols);
119 * \param cCols number of columns in corner as specified at run-time
132 inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) argument
134 return Block<Derived, CRows, CCols>(derived(), 0, cols() - cCols, cRow
156 topLeftCorner(Index cRows, Index cCols) argument
207 topLeftCorner(Index cRows, Index cCols) argument
231 bottomRightCorner(Index cRows, Index cCols) argument
282 bottomRightCorner(Index cRows, Index cCols) argument
306 bottomLeftCorner(Index cRows, Index cCols) argument
357 bottomLeftCorner(Index cRows, Index cCols) argument
[all...]
/external/eigen/Eigen/src/Core/
H A DDenseBase.h483 Block<Derived> corner(CornerType type, Index cRows, Index cCols);
484 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const;

Completed in 95 milliseconds