Searched refs:cCols (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 92 inline BlockXpr topRightCorner(Index cRows, Index cCols) in topRightCorner() argument 94 return BlockXpr(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 99 inline const ConstBlockXpr topRightCorner(Index cRows, Index cCols) const in topRightCorner() argument 101 return ConstBlockXpr(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 151 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols) in topRightCorner() argument 153 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 158 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols… in topRightCorner() argument 160 return typename ConstFixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 178 inline BlockXpr topLeftCorner(Index cRows, Index cCols) in topLeftCorner() argument 180 return BlockXpr(derived(), 0, 0, cRows, cCols); in topLeftCorner() [all …]
|