HomeSort by relevance Sort by last modified time
    Searched full:startcol (Results 1 - 25 of 28) sorted by null

1 2

  /external/eigen/Eigen/src/plugins/
BlockMethods.h 43 * \param startCol the first column in the block
56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols);
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
615 * \param startCol the index of the first column in the block
623 inline ColsBlockXpr middleCols(Index startCol, Index numCols)
625 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
629 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const
631 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols)
    [all...]
  /packages/apps/Terminal/src/com/android/terminal/
TerminalCallbacks.java 20 public int damage(int startRow, int endRow, int startCol, int endCol) {
Terminal.java 58 public void onDamage(int startRow, int endRow, int startCol, int endCol);
78 public int damage(int startRow, int endRow, int startCol, int endCol) {
80 mClient.onDamage(startRow, endRow, startCol, endCol);
TerminalView.java 195 public void onDamage(final int startRow, final int endRow, int startCol, int endCol) {
  /prebuilts/go/darwin-x86/src/cmd/cover/
func.go 99 startCol int
121 startCol: start.Column,
137 if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) {
141 if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) {
profile.go 31 StartLine, StartCol int
84 StartCol: toInt(m[3]),
112 return bi.StartLine < bj.StartLine || bi.StartLine == bj.StartLine && bi.StartCol < bj.StartCol
164 if b.StartLine == line && b.StartCol == col {
  /prebuilts/go/linux-x86/src/cmd/cover/
func.go 99 startCol int
121 startCol: start.Column,
137 if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) {
141 if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) {
profile.go 31 StartLine, StartCol int
84 StartCol: toInt(m[3]),
112 return bi.StartLine < bj.StartLine || bi.StartLine == bj.StartLine && bi.StartCol < bj.StartCol
164 if b.StartLine == line && b.StartCol == col {
  /external/eigen/Eigen/src/Core/products/
TriangularSolverVector.h 59 Index startCol = IsLower ? 0 : pi;
63 &lhs.coeffRef(startRow,startCol), lhsStride,
64 rhs + startCol, 1,
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 57 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols)
58 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
132 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols)
133 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
318 inline BlockImpl(const SparseMatrixType& xpr, int startRow, int startCol, int blockRows, int blockCols)
319 : m_matrix(xpr), m_outerStart(IsRowMajor ? startRow : startCol), m_outerSize(IsRowMajor ? blockRows : blockCols)
440 inline BlockImpl(const XprType& xpr, int startRow, int startCol, int blockRows, int blockCols)
441 : m_matrix(xpr), m_startRow(startRow), m_startCol(startCol), m_blockRows(blockRows), m_blockCols(blockCols)
  /external/eigen/Eigen/src/Core/
Block.h 298 Index startCol() const
339 inline BlockImpl_dense(XprType& xpr, Index startRow, Index startCol)
340 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol))), m_xpr(xpr)
348 Index startRow, Index startCol,
350 : Base(internal::const_cast_ptr(&xpr.coeffRef(startRow,startCol)), blockRows, blockCols),
  /external/eigen/doc/
SparseQuickReference.dox 189 sm1.block(startRow, startCol, rows, cols);
190 sm1.block(startRow, startCol);
  /external/llvm/test/Transforms/LoopRotate/
dbgvalue.ll 43 define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) {
59 %i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/detail/
gpumat.hpp 226 __host__ GpuMat_<T> GpuMat_<T>::colRange(int startcol, int endcol) const
228 return GpuMat_(*this, Range::all(), Range(startcol, endcol));
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
gpumat.hpp 119 __host__ GpuMat_ colRange(int startcol, int endcol) const;
  /external/opencv3/modules/core/misc/java/src/java/
core+Mat.java 223 // C++: Mat Mat::colRange(int startcol, int endcol)
226 // javadoc: Mat::colRange(startcol, endcol)
227 public Mat colRange(int startcol, int endcol)
230 Mat retVal = new Mat(n_colRange(nativeObj, startcol, endcol));
1143 // C++: Mat Mat::colRange(int startcol, int endcol)
1144 private static native long n_colRange(long nativeObj, int startcol, int endcol);
    [all...]
  /external/opencv3/modules/core/include/opencv2/core/
cuda.inl.hpp 269 GpuMat GpuMat::colRange(int startcol, int endcol) const
271 return GpuMat(*this, Range::all(), Range(startcol, endcol));
mat.inl.hpp 613 Mat Mat::colRange(int startcol, int endcol) const
615 return Mat(*this, Range::all(), Range(startcol, endcol));
    [all...]
cuda.hpp 232 GpuMat colRange(int startcol, int endcol) const;
mat.hpp     [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 534 int startCol = position / (mSlotWidth + mSlotGap);
535 int start = Math.max(0, mUnitCount * startCol);
  /external/opencv3/modules/java/generator/src/cpp/
Mat.cpp 429 // Mat Mat::colRange(int startcol, int endcol)
433 (JNIEnv* env, jclass, jlong self, jint startcol, jint endcol);
436 (JNIEnv* env, jclass, jlong self, jint startcol, jint endcol)
442 Mat _retval_ = me->colRange( startcol, endcol );
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 186 static void rpng2_x_redisplay_image (ulg startcol, ulg startrow,
    [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/stringtemplate/3.2.1/
stringtemplate-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/net/java/dev/jna/platform/3.4.0/
platform-3.4.0.jar 

Completed in 5106 milliseconds

1 2