/external/eigen/Eigen/src/Core/ |
D | Block.h | 128 inline Block(XprType& xpr, Index startRow, Index startCol) 129 : Impl(xpr, startRow, startCol) 133 && startCol >= 0 && BlockCols >= 0 && startCol + BlockCols <= xpr.cols()); 140 Index startRow, Index startCol, 142 : Impl(xpr, startRow, startCol, blockRows, blockCols) 147 && startCol >= 0 && blockCols >= 0 && startCol <= xpr.cols() - blockCols); 163 …NC inline BlockImpl(XprType& xpr, Index startRow, Index startCol) : Impl(xpr, startRow, startCol) … 165 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) 166 : Impl(xpr, startRow, startCol, blockRows, blockCols) {} 203 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol) [all …]
|
D | CoreEvaluators.h | 1021 m_startCol(block.startCol())
|
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument 66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) … in block() argument 73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols); in block() 715 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument 717 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols() 722 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument 724 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols() 745 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N) 747 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n); [all …]
|
/external/eigen/Eigen/src/SparseCore/ |
D | SparseBlock.h | 35 inline BlockImpl(XprType& xpr, Index startRow, Index startCol, Index blockRows, Index blockCols) in BlockImpl() argument 36 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in BlockImpl() 67 Index startCol() const { return IsRowMajor ? 0 : m_outerStart; } in startCol() function 115 …inline sparse_matrix_block_impl(SparseMatrixType& xpr, Index startRow, Index startCol, Index block… in sparse_matrix_block_impl() argument 116 …: m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(conver… in sparse_matrix_block_impl() 272 Index startCol() const { return IsRowMajor ? 0 : m_outerStart; } in startCol() function 298 …inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blo… in BlockImpl() argument 299 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() 317 …inline BlockImpl(SparseMatrixType& xpr, Index startRow, Index startCol, Index blockRows, Index blo… in BlockImpl() argument 318 : Base(xpr, startRow, startCol, blockRows, blockCols) in BlockImpl() [all …]
|
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/ |
D | JavaCommentsHelper.java | 69 int startCol = -1; in preserveIndentation() local 72 if (lineIdx >= 0 && (startCol == -1 || lineIdx < startCol)) { in preserveIndentation() 73 startCol = lineIdx; in preserveIndentation() 84 if (lines.get(i).length() >= startCol) { in preserveIndentation() 85 builder.append(lines.get(i).substring(startCol)); in preserveIndentation()
|
/external/aac/libSBRdec/src/ |
D | sbrdec_drc.cpp | 391 int startCol, stopCol; in sbrDecoder_drcApplySlot() local 421 startCol = (int)winBorderToColMap[startWinIdx]; in sbrDecoder_drcApplySlot() 455 if ((int)winBorderToColMap[8] > startCol) { in sbrDecoder_drcApplySlot() 465 if ((col >= startCol) && (col < stopCol)) { in sbrDecoder_drcApplySlot()
|
/external/eigen/Eigen/src/Core/products/ |
D | TriangularSolverVector.h | 63 Index startCol = IsLower ? 0 : pi; 67 LhsMapper(&lhs.coeffRef(startRow,startCol), lhsStride), 68 RhsMapper(rhs + startCol, 1),
|
/external/llvm/test/Transforms/LoopRotate/ |
D | dbgvalue.ll | 82 define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) { 98 %i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
|
/external/llvm-project/llvm/test/Transforms/LoopRotate/ |
D | dbgvalue.ll | 83 define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) { 99 %i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
|
/external/eigen/doc/ |
D | SparseQuickReference.dox | 189 sm1.block(startRow, startCol, rows, cols); 190 sm1.block(startRow, startCol);
|