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

  /external/eigen/Eigen/src/Core/
Block.h 127 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)
    [all...]
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 41 * \param startCol the first column in the block
54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols);
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
473 * \param startCol the index of the first column in the block
481 inline ColsBlockXpr middleCols(Index startCol, Index numCols)
483 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
487 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const
489 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols)
    [all...]
  /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/qemu/distrib/sdl-1.2.15/test/
testpalette.c 71 static SDL_Surface *make_bg(SDL_Surface *screen, int startcol)
94 v += p[-bg->pitch] + 65 - startcol;
95 p[j] = startcol + (v & 63);
  /external/webkit/Source/WebCore/rendering/
RenderTableSection.cpp 1054 unsigned int startcol = 0; local
1102 unsigned startcol = 0; local
    [all...]
RenderTable.cpp 741 int startCol = cCol;
746 *startEdge = startCol == col;
    [all...]
  /external/llvm/test/Transforms/LoopRotate/
dbgvalue.ll 43 define void @FindFreeHorzSeg(i64 %startCol, i64 %row, i64* %rowStart) {
55 %i.0 = phi i64 [ %startCol, %entry ], [ %dec, %for.inc ]
  /external/webkit/Source/JavaScriptCore/parser/
JSParser.cpp     [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/qemu/distrib/sdl-1.2.15/src/video/
SDL_RLEaccel.c 805 int startcol; \
812 startcol = ofs + start; \
813 if(len > right - startcol) \
814 len = right - startcol; \
815 do_blit(dstbuf + startcol * bpp, srcbuf + start * bpp, \
    [all...]
  /external/libpng/contrib/gregbook/
rpng2-x.c 170 static void rpng2_x_redisplay_image (ulg startcol, ulg startrow,
    [all...]

Completed in 4447 milliseconds