Lines Matching refs:cCols
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()
162 inline const Block<const Derived> topLeftCorner(Index cRows, Index cCols) const in topLeftCorner() argument
164 return Block<const Derived>(derived(), 0, 0, cRows, cCols); in topLeftCorner()
207 inline Block<Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) in topLeftCorner() argument
209 return Block<Derived, CRows, CCols>(derived(), 0, 0, cRows, cCols); in topLeftCorner()
214 inline const Block<const Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) const in topLeftCorner() argument
216 return Block<const Derived, CRows, CCols>(derived(), 0, 0, cRows, cCols); in topLeftCorner()
231 inline Block<Derived> bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() argument
233 return Block<Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in bottomRightCorner()
237 inline const Block<const Derived> bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() argument
239 return Block<const Derived>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in bottomRightCorner()
282 inline Block<Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) in bottomRightCorner() argument
284 return Block<Derived, CRows, CCols>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in bottomRightCorner()
289 inline const Block<const Derived, CRows, CCols> bottomRightCorner(Index cRows, Index cCols) const in bottomRightCorner() argument
291 …return Block<const Derived, CRows, CCols>(derived(), rows() - cRows, cols() - cCols, cRows, cCols); in bottomRightCorner()
306 inline Block<Derived> bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() argument
308 return Block<Derived>(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()
312 inline const Block<const Derived> bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() argument
314 return Block<const Derived>(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()
357 inline Block<Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() argument
359 return Block<Derived, CRows, CCols>(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()
364 inline const Block<const Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() argument
366 return Block<const Derived, CRows, CCols>(derived(), rows() - cRows, 0, cRows, cCols); in bottomLeftCorner()