HomeSort by relevance Sort by last modified time
    Searched refs:cols (Results 401 - 425 of 787) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/
onyx.h 272 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
273 int vp8_set_active_map(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/
vp9_idct.h 117 transform_1d cols, rows; // vertical and horizontal member in struct:__anon17748
124 high_transform_1d cols, rows; // vertical and horizontal member in struct:__anon17749
  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 196 set cols ""
199 append cols " $iCol\[[join $lPos { }]\]"
201 lappend lDoc "\[${docid}${cols}\]"
  /external/eigen/Eigen/src/Cholesky/
LLT.h 90 : m_matrix(matrix.rows(), matrix.cols()),
171 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::LLT
203 Index n = mat.cols();
270 eigen_assert(mat.rows()==mat.cols());
295 eigen_assert(m.rows()==m.cols());
387 eigen_assert(a.rows()==a.cols());
409 eigen_assert(v.size()==m_matrix.cols());
  /external/eigen/Eigen/src/Core/
CwiseUnaryView.h 72 EIGEN_STRONG_INLINE Index cols() const { return m_matrix.cols(); } function in class:Eigen::CwiseUnaryView
Fuzzy.h 54 return x.matrix() == Derived::Zero(x.rows(), x.cols()).matrix();
72 return x.matrix() == Derived::Zero(x.rows(), x.cols()).matrix();
  /external/eigen/Eigen/src/Core/products/
TriangularSolverMatrix.h 22 Index size, Index cols,
32 ::run(size, cols, tri, triStride, _other, otherStride, blocking);
54 Index cols = otherSize; local
68 std::size_t sizeB = kc*cols;
84 Index subcols = cols>0 ? l2/(4 * sizeof(Scalar) * otherStride) : 0;
106 for(Index j2=0; j2<cols; j2+=subcols)
108 Index actual_cols = (std::min)(cols-j2,subcols);
177 gebp_kernel(_other+i2, otherStride, blockA, blockB, actual_mc, actual_kc, cols, Scalar(-1), -1, -1, 0, 0, blockW);
  /external/eigen/Eigen/src/Eigenvalues/
RealSchur.h 104 : m_matT(matrix.rows(),matrix.cols()),
105 m_matU(matrix.rows(),matrix.cols()),
248 eigen_assert(matrix.cols() == matrix.rows());
272 m_workspaceVector.resize(m_matT.cols());
279 Index iu = m_matT.cols() - 1;
334 const Index size = m_matT.cols();
368 const Index size = m_matT.cols();
473 const Index size = m_matT.cols();
  /external/eigen/Eigen/src/SparseCore/
SparseBlock.h 62 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } function in class:Eigen::BlockImpl
238 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } function in class:Eigen::BlockImpl
272 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);
284 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);
308 m_blockCols(xpr.cols())
318 inline int cols() const { return m_blockCols.value(); } function in class:Eigen::BlockImpl
SparseColEtree.h 64 Index nc = mat.cols(); // Number of columns
71 parent.resize(mat.cols());
SparseTriangularView.h 43 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::SparseTriangularView
  /external/eigen/bench/
bench_gemm.cpp 47 int M = c.rows(); int N = c.cols(); int K = a.cols();
58 int M = c.rows(); int N = c.cols(); int K = a.cols();
69 int M = c.rows(); int N = c.cols(); int K = a.cols();
80 int M = c.rows(); int N = c.cols(); int K = a.cols();
  /external/eigen/bench/btl/libs/blitz/
blitz_LU_solve_interface.hh 90 ASSERT( LU.rows()==LU.cols() ) ;
155 ASSERT( LU.rows()==LU.cols() ) ;
  /external/eigen/bench/btl/libs/gmm/
gmm_LU_solve_interface.hh 90 ASSERT( LU.rows()==LU.cols() ) ;
155 ASSERT( LU.rows()==LU.cols() ) ;
  /external/eigen/bench/btl/libs/mtl4/
mtl4_LU_solve_interface.hh 90 ASSERT( LU.rows()==LU.cols() ) ;
155 ASSERT( LU.rows()==LU.cols() ) ;
  /external/eigen/blas/
BandTriangularSolver.h 38 for(int col=0 ; col<other.cols() ; ++col)
74 for(int col=0 ; col<other.cols() ; ++col)
common.h 103 matrix(T* data, int rows, int cols, int stride)
105 return Map<Matrix<T,Dynamic,Dynamic,ColMajor>, 0, OuterStride<> >(data, rows, cols, OuterStride<>(stride));
  /external/eigen/test/
main.h 327 void createRandomPIMatrixOfRank(typename MatrixType::Index desired_rank, typename MatrixType::Index rows, typename MatrixType::Index cols, MatrixType& m);
329 void createRandomPIMatrixOfRank(typename MatrixType::Index desired_rank, typename MatrixType::Index rows, typename MatrixType::Index cols, MatrixType& m)
333 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime };
337 typedef Matrix<Scalar, Cols, Cols> MatrixBType;
341 m.setZero(rows,cols);
348 m = VectorType::Random(rows).normalized() * VectorType::Random(cols).normalized().transpose();
353 MatrixType d = MatrixType::Identity(rows,cols);
354 MatrixBType b = MatrixBType::Random(cols,cols);
    [all...]
sparse_vector.cpp 12 template<typename Scalar,typename Index> void sparse_vector(int rows, int cols)
14 double densityMat = (std::max)(8./(rows*cols), 0.01);
  /external/libvpx/libvpx/vp8/common/
onyx.h 261 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
262 int vp8_set_active_map(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols);
  /external/opencv/cv/src/
cvfilter.cpp 453 width = src->cols;
685 (_kx->cols != 1 && _kx->rows != 1) ||
686 (_ky->cols != 1 && _ky->rows != 1) ||
697 _ksize.width = _kx->rows + _kx->cols - 1;
698 _ksize.height = _ky->rows + _ky->cols - 1;
706 CV_CALL( kx = cvCreateMat( _kx->rows, _kx->cols, filter_type ));
712 CV_CALL( ky = cvCreateMat( _ky->rows, _ky->cols, filter_type ));
718 xsz = kx->rows + kx->cols - 1;
719 ysz = ky->rows + ky->cols - 1;
907 int ksize = _kx->cols + _kx->rows - 1
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
onyx.h 261 int vp8_set_roimap(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols, int delta_q[4], int delta_lf[4], unsigned int threshold[4]);
262 int vp8_set_active_map(struct VP8_COMP* comp, unsigned char *map, unsigned int rows, unsigned int cols);
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelPicker.java 53 String [] cols = new String [] { "_id", "title", "package", "name" }; local
54 MatrixCursor c = new MatrixCursor(cols);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTextControlMultiLine.cpp 64 int factor = toHTMLTextAreaElement(node())->cols();
  /external/chromium_org/third_party/libvpx/source/libvpx/test/
pp_filter_test.cc 22 int cols,

Completed in 1522 milliseconds

<<11121314151617181920>>