HomeSort by relevance Sort by last modified time
    Searched full:cols (Results 276 - 300 of 825) sorted by null

<<11121314151617181920>>

  /external/eigen/Eigen/src/Core/
ReturnByValue.h 63 inline Index cols() const { return static_cast<const Derived*>(this)->cols(); } function in class:Eigen::ReturnByValue
DenseBase.h 61 using Base::cols;
96 * \sa MatrixBase::rows(), MatrixBase::cols(), ColsAtCompileTime, SizeAtCompileTime */
102 * \sa MatrixBase::rows(), MatrixBase::cols(), RowsAtCompileTime, SizeAtCompileTime */
178 * \code rows()==1 || cols()==1 \endcode
179 * \sa rows(), cols(), IsVectorAtCompileTime. */
189 : int(IsRowMajor) ? this->rows() : this->cols();
200 : int(IsRowMajor) ? this->cols() : this->rows();
217 void resize(Index rows, Index cols)
220 EIGEN_ONLY_USED_FOR_DEBUG(cols);
221 eigen_assert(rows == this->rows() && cols == this->cols(
    [all...]
ArrayWrapper.h 54 inline Index cols() const { return m_expression.cols(); } function in class:Eigen::ArrayWrapper
167 inline Index cols() const { return m_expression.cols(); } function in class:Eigen::MatrixWrapper
Replicate.h 90 inline Index cols() const { return m_matrix.cols() * m_colFactor.value(); } function in class:Eigen::Replicate
100 : col%m_matrix.cols();
112 : col%m_matrix.cols();
  /external/eigen/Eigen/src/LU/
PartialPivLU_MKL.h 49 static lapack_int blocked_lu(lapack_int rows, lapack_int cols, EIGTYPE* lu_data, lapack_int luStride, lapack_int* row_transpositions, lapack_int& nb_transpositions, lapack_int maxBlockSize=256) \
61 n = cols; \
  /external/eigen/Eigen/src/SparseCore/
SparseView.h 45 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::SparseView
MappedSparseMatrix.h 50 inline Index cols() const { return IsRowMajor ? m_innerSize : m_outerSize; } function in class:Eigen::MappedSparseMatrix
106 inline MappedSparseMatrix(Index rows, Index cols, Index nnz, Index* outerIndexPtr, Index* innerIndexPtr, Scalar* valuePtr)
107 : m_outerSize(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(outerIndexPtr),
  /external/eigen/Eigen/src/misc/
Image.h 50 inline Index cols() const { return m_cols; } function in struct:Eigen::internal::image_retval_base
78 using Base::cols; \
  /external/opencv/cxcore/src/
cxminmaxloc.cpp 407 if( minloc.x >= mat->cols )
409 minloc.y = minloc.x / mat->cols;
410 minloc.x -= minloc.y * mat->cols;
413 if( maxloc.x >= mat->cols )
415 maxloc.y = maxloc.x / mat->cols;
416 maxloc.x -= maxloc.y * mat->cols;
419 if( matmask && ((unsigned)minloc.x >= (unsigned)mat->cols ||
422 (unsigned)maxloc.x >= (unsigned)mat->cols ||
cxsvd.cpp 1230 t_svd; /* special case: a->rows < a->cols */
1245 if( a->rows >= a->cols )
1248 n = a->cols;
1250 w_cols = w->cols;
1260 m = a->cols;
1262 w_rows = w->cols;
1283 u_cols = u->cols;
1287 u_rows = u->cols;
    [all...]
  /external/opencv/cv/src/
cvsurf.cpp 120 int* xofs = (int*)cvStackAlloc(sum->cols*sizeof(xofs[0]));
134 hessian_cols = (sum->cols)*SIZE0/scale;
138 icvResizeHaarPattern( dx_s, Dx, NX, SIZE0, size, sum->cols );
139 icvResizeHaarPattern( dy_s, Dy, NY, SIZE0, size, sum->cols );
140 icvResizeHaarPattern( dxy_s, Dxy, NXY, SIZE0, size, sum->cols );
160 const int* sum_ptr = sum->data.i + sum->cols*(i*scale/SIZE0);
191 hessian_cols = hessians[k]->cols;
192 icvResizeHaarPattern( dm, &Dm, 1, SIZE0, size, mask_sum ? mask_sum->cols : sum->cols );
207 mask_sum->cols*((i-SIZE0/2)*scale/SIZE0)
    [all...]
cvfundam.cpp 113 int i, count = _err->rows*_err->cols, goodCount = 0;
176 int count = m1->rows*m1->cols, maxGoodCount = 0;
271 int count = m1->rows*m1->cols;
361 int count = m1->cols*m1->rows;
446 int i, count = m1->rows*m1->cols;
509 int i, count = m1->rows*m1->cols;
527 int i, j, k, count = m1->rows*m1->cols;
530 CvMat modelPart = cvMat( solver.param->rows, solver.param->cols, model->type, model->data.ptr );
594 count = MAX(imagePoints->cols, imagePoints->rows);
606 (mask->rows == 1 || mask->cols == 1) &
    [all...]
cvhough.cpp 111 width = img->cols;
244 w = img->cols;
511 width = image->cols;
789 if( !CV_IS_MAT_CONT( mat->type ) || (mat->rows != 1 && mat->cols != 1) )
798 mat->rows + mat->cols - 1, &lines_header, &lines_block ));
830 if( mat->cols > mat->rows )
831 mat->cols = lines->total;
869 int rows, cols, arows, acols; local
876 CV_CALL( edges = cvCreateMat( img->rows, img->cols, CV_8UC1 ));
879 CV_CALL( dx = cvCreateMat( img->rows, img->cols, CV_16SC1 ))
    [all...]
cvinpaint.cpp 90 for( j = 0; j < f->cols; j++ )
120 for (j=0; j<f->cols; j++) {
252 if ((i<=0)||(j<=0)||(i>f->rows)||(j>f->cols)) continue;
268 for(j=0; j<f->cols; j++) {
294 if ((i<=1)||(j<=1)||(i>t->rows-1)||(j>t->cols-1)) continue;
336 int lm=l-1+(l==1),lp=l-1-(l==t->cols-2);
337 if (k>0&&l>0&&k<t->rows-1&&l<t->cols-1) {
407 if ((i<=1)||(j<=1)||(i>t->rows-1)||(j>t->cols-1)) continue;
449 int lm=l-1+(l==1),lp=l-1-(l==t->cols-2);
450 if (k>0&&l>0&&k<t->rows-1&&l<t->cols-1)
    [all...]
  /external/eigen/Eigen/src/UmfPackSupport/
UmfPackSupport.h 154 inline Index cols() const { return m_copyMatrix.cols(); } function in class:Eigen::UmfPackLU
243 errorCode = umfpack_symbolic(matrix.rows(), matrix.cols(), m_outerIndexPtr, m_innerIndexPtr, m_valuePtr,
300 m_copyMatrix.resize(mat.rows(), mat.cols());
347 int lnz, unz, rows, cols, nz_udiag; local
348 umfpack_get_lunz(&lnz, &unz, &rows, &cols, &nz_udiag, m_numeric, Scalar());
351 m_l.resize(rows,(std::min)(rows,cols));
354 m_u.resize((std::min)(rows,cols),cols);
358 m_q.resize(cols);
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasOutboxSync.java 342 String[] cols = Utility.getRowColumns(context, Body.CONTENT_URI, BODY_SOURCE_PROJECTION, local
346 if (cols != null && cols[0] != null) {
347 refId = Long.parseLong(cols[0]);
349 cols = Utility.getRowColumns(context, Message.CONTENT_URI, refId,
352 if (cols != null) {
353 itemId = cols[0];
354 final long boxId = Long.parseLong(cols[1]);
356 cols = Utility.getRowColumns(context, Mailbox.CONTENT_URI, boxId,
358 if (cols != null)
    [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 109 for(j=0;j<matrix->cols;j++)
138 numPoints = points->cols;
139 if( numPoints <= 0 || numPoints != normPoints->cols )
149 if(cameraMatr->rows != 3 || cameraMatr->cols != 3)
202 if( (points1->cols != points2->cols) || (points1->cols != points3->cols) || (points1->cols != 6) /* || (points4D->cols !=6) */
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_filename_controller/
options.html 28 <textarea class=action-js rows=5 cols=83>console.log(item.url)
  /external/chromium_org/third_party/WebKit/ManualTests/autocorrection/
remove-misspelling-marker-after-appending-letter.html 36 <textarea id="test" cols="80" rows="10"></textarea>
  /external/chromium_org/third_party/WebKit/ManualTests/
selection-start-after-inserting-line-break-in-textarea.html 5 <textarea cols="20" rows="20"></textarea>
textarea-focus.html 26 <textarea rows="8" cols="40"></textarea>
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFrameSetElement.idl 23 [Reflect] attribute DOMString cols;
  /external/chromium_org/third_party/skia/include/utils/
SkBoundaryPatch.h 41 bool evalPatch(SkPoint verts[], int rows, int cols);
  /external/dexmaker/javadoc/
index.html 23 <FRAMESET cols="20%,80%" title="" onLoad="top.loadFrames()">
  /external/dnsmasq/contrib/dnslist/
dnslist.tt2 9 <table cols="7">

Completed in 2066 milliseconds

<<11121314151617181920>>