Home
last modified time | relevance | path

Searched refs:startCol (Results 1 – 5 of 5) sorted by relevance

/external/eigen/Eigen/src/Core/
DBlock.h127 inline Block(XprType& xpr, Index startRow, Index startCol)
128 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
133 && startCol >= 0 && BlockCols >= 1 && startCol + BlockCols <= xpr.cols());
139 Index startRow, Index startCol,
141 : m_xpr(xpr), m_startRow(startRow), m_startCol(startCol),
147 && startCol >= 0 && blockCols >= 0 && startCol + blockCols <= xpr.cols());
242 Index startCol() const
286 inline Block(XprType& xpr, Index startRow, Index startCol)
287 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
290 && startCol >= 0 && BlockCols >= 1 && startCol + BlockCols <= xpr.cols());
[all …]
/external/eigen/Eigen/src/plugins/
DBlockMethods.h54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block()
481 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument
483 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
487 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument
489 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols()
503 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol) in middleCols() argument
505 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N); in middleCols()
[all …]
/external/eigen/Eigen/src/Core/products/
DTriangularSolverVector.h59 Index startCol = IsLower ? 0 : pi;
63 &lhs.coeffRef(startRow,startCol), lhsStride,
64 rhs + startCol, 1,
/external/llvm/test/Transforms/LoopRotate/
Ddbgvalue.ll43 define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) {
55 %i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTable.cpp881 unsigned startCol = columnCount; in slowColElement() local
887 *startEdge = startCol == col; in slowColElement()