Searched refs:FixedBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 35 template<int Rows, int Cols> struct FixedBlockXpr { typedef Block<Derived,Rows,Cols> Type; }; struct 118 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner() in topRightCorner() 120 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - CCols); in topRightCorner() 151 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols) in topRightCorner() 153 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, cols() - cCols, cRows, cCols); in topRightCorner() 203 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner() in topLeftCorner() 205 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0); in topLeftCorner() 236 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols) in topLeftCorner() 238 return typename FixedBlockXpr<CRows,CCols>::Type(derived(), 0, 0, cRows, cCols); in topLeftCorner() 288 inline typename FixedBlockXpr<CRows,CCols>::Type bottomRightCorner() in bottomRightCorner() [all …]
|