HomeSort by relevance Sort by last modified time
    Searched refs:cols (Results 576 - 600 of 774) sorted by null

<<21222324252627282930>>

  /external/eigen/Eigen/src/Core/
GeneralProduct.h 23 template<int Rows, int Cols, int Depth> struct product_type_selector;
44 Cols = traits<_Rhs>::ColsAtCompileTime,
56 cols_select = product_size_category<Cols,MaxCols>::value,
70 EIGEN_DEBUG_VAR(Cols);
240 actualLhs.rows(), actualLhs.cols(),
273 actualLhs.rows(), actualLhs.cols(),
335 actualLhs.rows(), actualLhs.cols(),
GlobalFunctions.h 164 typename internal::plain_constant_type<Derived,Scalar>::type(exponents.rows(), exponents.cols(), x), exponents.derived() );
172 typename internal::plain_constant_type<Derived,typename Derived::Scalar>::type(exponents.rows(), exponents.cols(), x), exponents.derived() );
Array.h 196 /** constructs an uninitialized array with \a rows rows and \a cols columns.
201 Array(Index rows, Index cols);
261 * \c ArrayRowsColsType where \c Rows and \c Cols can be \c 2,\c 3,\c 4 for fixed size square matrices or \c X for dynamic size,
Dot.h 302 for(Index i = 0; i < cols(); ++i)
Matrix.h 147 * Eigen::Index rows, cols;
158 * <tr><td>\code Matrix<T,Rows,Cols> \endcode</td><td>\code
160 * T data[Rows*Cols]; // with (size_t(data)%A(Rows*Cols*sizeof(T)))==0
166 * Eigen::Index rows, cols;
170 * Note that in this table Rows, Cols, MaxRows and MaxCols are all positive integers. A(S) is defined to the largest possible power-of-two
326 /** \brief Constructs an uninitialized matrix with \a rows rows and \a cols columns.
339 Matrix(Index rows, Index cols);
  /external/opencv/cv/src/
cvsegmentation.cpp 386 (src_pyramid[level-1]->cols+1)/2, src_pyramid[level-1]->type ));
388 src_pyramid[level]->cols, src_pyramid[level]->type ));
393 CV_CALL( mask0 = cvCreateMat( src0->rows, src0->cols, CV_8UC1 ));
cvimgwarp.cpp 1799 int x, y, cols = src->cols, rows = src->rows; local
2109 int x, y, cols = mapx->cols, rows = mapx->rows; local
    [all...]
  /external/toybox/toys/posix/
ls.c 68 static int crunch_qb(FILE *out, int cols, int wc)
94 if (cols<len) len = cols;
  /system/core/adb/
shell_service.cpp 571 int rows, cols, x_pixels, y_pixels; local
573 &rows, &cols, &x_pixels, &y_pixels) == 4) {
576 ws.ws_col = cols;
  /external/opencv/cv/include/
cvcompat.h 110 CV_INLINE CvMat cvMatArray( int rows, int cols, int type,
113 return cvMat( rows*count, cols, type, data );
390 *hullsize = hull1.cols;
511 return linesMat.cols;
524 return linesMat.cols;
536 return linesMat.cols;
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
CursorWindowTest.java 410 private static ArrayList<ArrayList<Integer>> createTestList(int rows, int cols) {
417 for (int j = 0; j < cols; j++) {
  /external/dng_sdk/source/
dng_gain_map.cpp 555 uint32 cols = overlap.W (); local
578 for (uint32 col = 0; col < cols; col += colPitch)
  /external/eigen/Eigen/src/Core/products/
SelfadjointMatrixVector.h 184 eigen_assert(dest.rows()==a_lhs.rows() && dest.cols()==a_rhs.cols());
GeneralBlockPanelKernel.h 886 Index rows, Index depth, Index cols, ResScalar alpha,
894 Index rows, Index depth, Index cols, ResScalar alpha,
903 Index packet_cols4 = nr>=4 ? (cols/4) * 4 : 0;
    [all...]
  /external/eigen/Eigen/src/Geometry/
Transform.h 384 EIGEN_DEVICE_FUNC Index rows() const { return int(Mode)==int(Projective) ? m_matrix.cols() : (m_matrix.cols()-1); }
385 EIGEN_DEVICE_FUNC Index cols() const { return m_matrix.cols(); } function in class:Eigen::Transform
    [all...]
  /external/harfbuzz_ng/util/
ansi-print.cc 390 unsigned int cols = (width + CELL_W - 1) / CELL_W;
395 for (unsigned int col = 0; col < cols; col++) {
  /external/libvpx/libvpx/tools/
tiny_ssim.c 87 int recon_stride, unsigned int cols,
94 for (col = 0; col < cols; col++) {
  /external/ppp/pppd/
sys-linux.c 1537 char *cols[ROUTE_MAX_COLS], *p; local
    [all...]
  /packages/apps/Music/src/com/android/music/
MusicUtils.java 416 String[] cols = local
423 Cursor cur = resolver.query(MediaStore.Audio.Playlists.EXTERNAL_CONTENT_URI, cols,
456 String[] cols = new String[] {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.DATA, local
467 Cursor c = query(context, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, cols,
574 String[] cols = new String[] {"count(*)"}; local
576 Cursor cur = resolver.query(uri, cols, null, null, null);
1110 String[] cols = new String[] {MediaStore.Audio.Media._ID, MediaStore.Audio.Media.DATA, local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 274 final String[] cols = new String[] { Data.IS_PRIMARY, Data.IS_SUPER_PRIMARY }; local
276 cols, Data._ID + "=?", mSelectionArgs1, null, null, null);
  /external/opencv/cvaux/include/
cvmat.hpp 378 explicit CvMAT( int rows, int cols, int type, void* data, int step = CV_AUTOSTEP );
380 explicit CvMAT( int rows, int cols, int type );
557 void create( int rows, int cols, int type );
1029 inline CvMAT::CvMAT( int rows, int cols, int type, void* data, int step )
1031 cvInitMatHeader( this, rows, cols, type, data, step );
1041 inline void CvMAT::create( int rows, int cols, int type )
1043 int step = cols*CV_ELEM_SIZE(type), total_size = step*rows;
1045 this->cols = cols;
1054 inline CvMAT::CvMAT( int rows, int cols, int type
    [all...]
  /external/opencv/ml/src/
mlsvm.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
calendar.py 595 def format(cols, colwidth=_colwidth, spacing=_spacing):
597 print formatstring(cols, colwidth, spacing)
600 def formatstring(cols, colwidth=_colwidth, spacing=_spacing):
603 return spacing.join(c.center(colwidth) for c in cols)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
calendar.py 590 def format(cols, colwidth=_colwidth, spacing=_spacing):
592 print formatstring(cols, colwidth, spacing)
595 def formatstring(cols, colwidth=_colwidth, spacing=_spacing):
598 return spacing.join(c.center(colwidth) for c in cols)
  /external/eigen/test/
denseLM.cpp 84 eigen_assert(fjac.cols() == n);

Completed in 1692 milliseconds

<<21222324252627282930>>