Searched refs:cCols (Results 1 – 3 of 3) sorted by relevance
/external/eigen/Eigen/src/Eigen2Support/ |
D | Block.h | 34 ::corner(CornerType type, Index cRows, Index cCols) in corner() argument 41 return Block<Derived>(derived(), 0, 0, cRows, cCols); in corner() 43 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); in corner() 45 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols); in corner() 47 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in corner() 54 DenseBase<Derived>::corner(CornerType type, Index cRows, Index cCols) const in corner() argument 61 return Block<Derived>(derived(), 0, 0, cRows, cCols); in corner() 63 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); in corner() 65 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols); in corner() 67 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in corner()
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 80 inline Block<Derived> topRightCorner(Index cRows, Index cCols) in topRightCorner() argument 82 return Block<Derived>(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const in topRightCorner() argument 88 return Block<const Derived>(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 132 inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) in topRightCorner() argument 134 return Block<Derived, CRows, CCols>(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 139 inline const Block<const Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) const in topRightCorner() argument 141 return Block<const Derived, CRows, CCols>(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 156 inline Block<Derived> topLeftCorner(Index cRows, Index cCols) in topLeftCorner() argument 158 return Block<Derived>(derived(), 0, 0, cRows, cCols); in topLeftCorner() [all …]
|
/external/eigen/Eigen/src/Core/ |
D | DenseBase.h | 487 Block<Derived> corner(CornerType type, Index cRows, Index cCols); 488 const Block<Derived> corner(CornerType type, Index cRows, Index cCols) const;
|