/external/eigen/test/ |
adjoint.cpp | 81 Index cols = m.cols(); local 83 MatrixType m1 = MatrixType::Random(rows, cols), 84 m2 = MatrixType::Random(rows, cols), 85 m3(rows, cols), 113 c = internal::random<Index>(0, cols-1); 124 if(PacketSize<m3.rows() && PacketSize<m3.cols()) 128 Index j = internal::random<Index>(0,m3.cols()-PacketSize);
|
real_qz.cpp | 24 Index dim = m.cols(); 54 for (Index i=0; i<A.cols(); i++)
|
sparse_permutations.cpp | 47 const Index cols = ref.cols(); local 56 double density = (std::max)(8./(rows*cols), 0.01); 58 SparseMatrixType mat(rows, cols), up(rows,cols), lo(rows,cols); 60 DenseMatrix mat_d = DenseMatrix::Zero(rows, cols), up_sym_d, lo_sym_d, res_d; 76 randomPermutationVector(pi, cols);
|
visitor.cpp | 18 Index cols = p.cols(); local 22 m = MatrixType::Random(rows, cols); 30 for(Index j = 0; j < cols; j++)
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockOfDynamicSparseMatrix.h | 108 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
|
/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...] |
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/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...] |
/packages/apps/Music/src/com/android/music/ |
VideoBrowserActivity.java | 83 String[] cols = new String[] {MediaStore.Video.Media._ID, MediaStore.Video.Media.TITLE, local 92 mCursor = resolver.query(MediaStore.Video.Media.EXTERNAL_CONTENT_URI, cols,
|
/packages/apps/Terminal/src/com/android/terminal/ |
TerminalLineView.java | 35 public int cols; field in class:TerminalLineView 64 for (int col = 0; col < cols;) {
|
/external/libvterm/src/ |
state.c | 64 state->cols = vt->cols; 87 if(rect.start_col == 0 && rect.end_col == state->cols && rightward == 0) { 1034 rect.start_col = state->pos.col; rect.end_col = state->cols; 1048 rect.start_col = 0; rect.end_col = state->cols; 1062 rect.start_col = 0; rect.end_col = state->cols; 1232 for(col = 0; col < state->cols; col++) [all...] |
/external/opencv/cvaux/src/ |
cvlevmarprojbandle.cpp | 91 numPoints = points4D->cols; 108 if( projMatr->rows != 3 || projMatr->cols != 4 ) 118 if( status->rows != 1 || status->cols != numPoints ) 128 if( derivProj->cols != 12 ) 249 numPoints = presPoints->cols; 266 if( projMatr->rows != 3 || projMatr->cols != 4 ) 276 if( presPoints->rows != 1 || presPoints->cols != numPoints ) 332 if( derivPoint->rows != 2 || derivPoint->cols != currVisPoint*4 ) 390 numPoints = presPoints[0]->cols; 478 numPoints = presPoints[0]->cols; [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
EigenSolver.h | 148 : m_eivec(matrix.rows(), matrix.cols()), 149 m_eivalues(matrix.cols()), 152 m_realSchur(matrix.cols()), 153 m_matT(matrix.rows(), matrix.cols()), 154 m_tmp(matrix.cols()) 350 Index n = m_eivec.cols(); 386 eigen_assert(matrix.cols() == matrix.rows()); 400 m_eivalues.resize(matrix.cols()); 402 while (i < matrix.cols()) 404 if (i == matrix.cols() - 1 || m_matT.coeff(i+1, i) == Scalar(0)) [all...] |
ComplexEigenSolver.h | 127 : m_eivec(matrix.rows(),matrix.cols()), 128 m_eivalues(matrix.cols()), 132 m_matX(matrix.rows(),matrix.cols()) 266 eigen_assert(matrix.cols() == matrix.rows());
|
/device/google/accessory/arduino/USB_Host_Shield/ |
Max_LCD.h | 84 void begin(uint8_t cols, uint8_t rows, uint8_t charsize = LCD_5x8DOTS);
|
/external/eigen/Eigen/src/Core/ |
Assign_MKL.h | 88 eigen_assert(dst.rows() == src.rows() && dst.cols() == src.cols()); \ 148 eigen_assert(dst.rows() == src.rows() && dst.cols() == src.cols()); \
|
Ref.h | 78 : int(Flags)&RowMajorBit ? this->cols() 100 eigen_assert(expr.rows()==1 || expr.cols()==1); 105 eigen_assert(expr.rows()==1 || expr.cols()==1); 109 ::new (static_cast<Base*>(this)) Base(expr.data(), expr.rows(), expr.cols());
|
/external/eigen/Eigen/src/SparseCore/ |
SparsePermutation.h | 43 SparseMatrix<Scalar,SrcStorageOrder,StorageIndex> tmp(mat.rows(), mat.cols()); 63 SparseMatrix<Scalar,int(SrcStorageOrder)==RowMajor?ColMajor:RowMajor,StorageIndex> tmp(mat.rows(), mat.cols()); 108 : m_result(xpr.rows(), xpr.cols()) 131 : m_result(xpr.rows(), xpr.cols())
|
SparseSelfAdjointView.h | 63 eigen_assert(rows()==cols() && "SelfAdjointView is only for squared matrices"); 67 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::SparseSelfAdjointView 151 void resize(Index rows, Index cols) 154 EIGEN_ONLY_USED_FOR_DEBUG(cols); 155 eigen_assert(rows == this->rows() && cols == this->cols() 237 SparseMatrix<DestScalar,StorageOrder,StorageIndex> tmp(src.rows(),src.cols()); 246 SparseMatrix<DestScalar,StorageOrder,StorageIndex> tmp(src.rows(),src.cols()); 255 SparseMatrix<DestScalar,StorageOrder,StorageIndex> tmp(src.rows(),src.cols()); 617 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::SparseSymmetricPermutationProduct [all...] |
/external/eigen/blas/ |
common.h | 102 matrix(T* data, int rows, int cols, int stride) 104 return Map<Matrix<T,Dynamic,Dynamic,ColMajor>, 0, OuterStride<> >(data, rows, cols, OuterStride<>(stride)); 109 matrix(const T* data, int rows, int cols, int stride) 111 return Map<const Matrix<T,Dynamic,Dynamic,ColMajor>, 0, OuterStride<> >(data, rows, cols, OuterStride<>(stride));
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
ConstrainedConjGrad.h | 55 Index rows = C.rows(), cols = C.cols(); local 57 TmpVec d(rows), e(rows), l(cols), p(rows), q(rows), r(rows); 124 SparseMatrix<Scalar,RowMajor> CINV(C.rows(), C.cols());
|
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
rwupdt.h | 14 const Index n = r.cols();
|
/external/opencv/ml/src/ |
mlestimate.cpp | 129 crVal->sampleIdxTrain->cols = crVal->samples_all - k; 131 crVal->sampleIdxEval->cols = k; 193 k = crVal->sampleIdxEval->cols; 462 if (sampleIdx->rows != 1 && sampleIdx->cols != 1) 465 s_len = sampleIdx->rows + sampleIdx->cols - 1; 614 crVal->sampleIdxEval->cols = 0; 615 crVal->sampleIdxTrain->cols = 0; 691 samples_all = ((tflag) ? trueData->rows : trueData->cols);
|