/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) \ 60 m = rows; \
|
/external/eigen/Eigen/src/SparseCore/ |
SparseView.h | 44 inline Index rows() const { return m_matrix.rows(); } function in class:Eigen::SparseView
|
/external/eigen/test/ |
zerosized.cpp | 33 VERIFY(t1.rows() == 0); 41 VERIFY(t2.rows() == 0);
|
/external/jpeg/ |
jmemmgr.c | 154 JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */ 170 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */ 338 * deliberately bunch rows together to ensure a large request size. 386 * blocks, we allocate the sample rows in groups of as many rows as possible 389 * this chunking of rows. The rowsperchunk value is left in the mem manager 405 /* Calculate max # of rows allowed in one allocation chunk */ 420 /* Get the rows themselves (large objects) */ 453 /* Calculate max # of rows allowed in one allocation chunk */ 468 /* Get the rows themselves (large objects) * 693 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 726 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local [all...] |
/external/kernel-headers/original/uapi/linux/ |
virtio_console.h | 48 /* rows of the screens */ 49 __u16 rows; member in struct:virtio_console_config
|
/external/mesa3d/src/glsl/ |
glsl_types.cpp | 396 glsl_type::get_instance(unsigned base_type, unsigned rows, unsigned columns) 401 if ((rows < 1) || (rows > 4) || (columns < 1) || (columns > 4)) 409 return uint_type + (rows - 1); 411 return int_type + (rows - 1); 413 return float_type + (rows - 1); 415 return bool_type + (rows - 1); 420 if ((base_type != GLSL_TYPE_FLOAT) || (rows == 1)) 423 /* GLSL matrix types are named mat{COLUMNS}x{ROWS}. Only the following 434 switch (IDX(columns, rows)) { [all...] |
/external/opencv/ml/src/ |
mlknearest.cpp | 328 _results->cols != 1 && _results->rows != 1 || 329 _results->cols + _results->rows - 1 != _samples->rows) ) 344 _neighbor_responses->rows != _samples->rows || _neighbor_responses->cols != k ) 352 _dist->rows != _samples->rows || _dist->cols != k ) 357 count = _samples->rows;
|
/external/pdfium/core/src/fxcodec/libjpeg/ |
fpdfapi_jmemmgr.c | 157 JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */
173 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */
341 * deliberately bunch rows together to ensure a large request size.
389 * blocks, we allocate the sample rows in groups of as many rows as possible
392 * this chunking of rows. The rowsperchunk value is left in the mem manager
408 /* Calculate max # of rows allowed in one allocation chunk */
423 /* Get the rows themselves (large objects) */
456 /* Calculate max # of rows allowed in one allocation chunk */
471 /* Get the rows themselves (large objects) */ 696 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 729 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local [all...] |
/external/qemu/distrib/jpeg-6b/ |
jmemmgr.c | 154 JDIMENSION maxaccess; /* max rows accessed by access_virt_sarray */ 170 JDIMENSION maxaccess; /* max rows accessed by access_virt_barray */ 338 * deliberately bunch rows together to ensure a large request size. 386 * blocks, we allocate the sample rows in groups of as many rows as possible 389 * this chunking of rows. The rowsperchunk value is left in the mem manager 405 /* Calculate max # of rows allowed in one allocation chunk */ 420 /* Get the rows themselves (large objects) */ 453 /* Calculate max # of rows allowed in one allocation chunk */ 468 /* Get the rows themselves (large objects) * 693 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local 726 long bytesperrow, file_offset, byte_count, rows, thisrow, i; local [all...] |
/external/skia/tests/ |
ARGBImageEncoderTest.cpp | 25 // kHeight rows, each with kWidth pixels, premultiplied ARGB for each pixel 42 // Change rows [0,1] from blue to [red,green].
|
/external/webp/src/utils/ |
filters.h | 47 // The reconstruction will be done for 'num_rows' rows starting from 'row' 48 // (assuming rows upto 'row - 1' are already reconstructed).
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
ColorSpaceTransform.java | 38 /** The number of rows in this matrix. */ 39 private static final int ROWS = 3; 45 private static final int COUNT = ROWS * COLUMNS; 57 private static final int COUNT_INT = ROWS * COLUMNS * RATIONAL_SIZE; 128 * <p>The rows must be within the range [0, 3), 138 } else if (row < 0 || row >= ROWS) { 277 for (int row = 0, i = 0; row < ROWS; row++) { 290 if (row < ROWS - 1) {
|
/frameworks/base/core/java/android/text/ |
PackedIntVector.java | 25 * optimized for inserting and deleting rows and for 206 * Deletes the specified number of rows starting with the specified 210 * @param count the number of rows to delete. 212 * @throws IndexOutOfBoundsException if any of the rows to be deleted 231 * Returns the number of rows in the PackedIntVector. This number 232 * will change as rows are inserted and deleted. 234 * @return the number of rows. 252 * one more than the current number of rows.
|
/libcore/luni/src/main/java/javax/sql/ |
RowSetListener.java | 44 * Notifies the listener that one of the {@code RowSet}'s rows in {@code 64 * rows of data.
|
RowSetReader.java | 24 * to get data from a database into its rows. The {@code RowSet} calls the 39 * This method adds rows into the calling {@code RowSet}. The reader may
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/expected/ |
ExpectedKeyboardBuilder.java | 26 * An expected keyboard is an array of rows, and a row consists of an array of {@link ExpectedKey}s. 36 public ExpectedKeyboardBuilder(final ExpectedKey[][] rows) { 37 super(rows); 332 * @param rows the keyboard to be converted to string. 333 * @return the human readable representation of <code>rows</code>. 335 public static String toString(final ExpectedKey[][] rows) { 337 for (int rowIndex = 0; rowIndex < rows.length; rowIndex++) { 341 sb.append(Arrays.toString(rows[rowIndex]));
|
/external/llvm/lib/Target/Mips/ |
MipsMSAInstrInfo.td | [all...] |
/external/opencv/cvaux/src/ |
cvtrifocal.cpp | 107 for( i=0;i<matrix->rows;i++ ) 144 if( normPoints->rows != 2 || normPoints->rows != points->rows ) 149 if(cameraMatr->rows != 3 || cameraMatr->cols != 3) 207 if( points1->rows != 2 || points2->rows != 2 || points3->rows != 2 ) 213 !(projMatr1->rows == 3 && projMatr2->rows == 3 && projMatr3->rows == 3) & [all...] |
/external/eigen/Eigen/src/SuperLUSupport/ |
SuperLUSupport.h | 159 res.nrow = mat.rows(); 175 res.ncol = mat.rows(); 180 res.nrow = mat.rows(); 205 template<typename Scalar, int Rows, int Cols, int Options, int MRows, int MCols> 206 struct SluMatrixMapHelper<Matrix<Scalar,Rows,Cols,Options,MRows,MCols> > 208 typedef Matrix<Scalar,Rows,Cols,Options,MRows,MCols> MatrixType; 216 res.nrow = mat.rows(); 234 res.ncol = mat.rows(); 239 res.nrow = mat.rows(); 315 inline Index rows() const { return m_matrix.rows(); function in class:Eigen::SuperLUBase [all...] |
/external/opencv/cxcore/src/ |
cxarray.cpp | 118 if( (int64)arr->step*arr->rows > INT_MAX ) 124 cvCreateMatHeader( int rows, int cols, int type ) 135 if( rows <= 0 || cols <= 0 ) 144 arr->step = rows == 1 ? 0 : cvAlign(min_step, CV_DEFAULT_MAT_ROW_ALIGN); 147 arr->rows = rows; 166 cvInitMatHeader( CvMat* arr, int rows, int cols, 181 if( rows <= 0 || cols <= 0 ) 182 CV_ERROR( CV_StsBadSize, "Non-positive cols or rows" ); 186 arr->rows = rows [all...] |
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXTable.cpp | 141 RefPtrWillBeRawPtr<HTMLTableRowsCollection> rows = tableElement->rows(); local 142 unsigned rowCount = rows->length(); 144 HTMLTableRowElement* rowElement = rows->item(rowIndex); 180 // If there are at least 20 rows, we'll call it a data table. 275 // For the first 5 rows, cache the background color so we can check if this table has zebra-striped rows. 376 // Go through all the available sections to pull out the rows and add them as children. 399 // can cause us to miss rows if we just check the first column. 448 AXObject::AccessibilityChildrenVector& AXTable::rows() function in class:blink::AXTable [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/x86/ |
postproc_sse2.asm | 119 movsxd rcx, DWORD PTR arg(6) ;rows in a macroblock 123 ;load current and next 2 rows 130 ;load above 2 rows 234 ; int pitch, int rows, int cols,int flimit) 263 ;rows +=8; 273 ; this copies the last row down into the border 8 rows 290 ; this copies the first row up into the border 8 rows 443 cmp edx, dword arg(2) ;rows 466 ; int pitch, int rows, int cols,int flimit) 490 ;for(r=0;r<rows;r++ [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
HessenbergDecomposition.h | 120 m_temp(matrix.rows()), 123 if(matrix.rows()<2) 128 m_hCoeffs.resize(matrix.rows()-1,1); 153 if(matrix.rows()<2) 158 m_hCoeffs.resize(matrix.rows()-1,1); 236 .setLength(m_matrix.rows() - 1) 294 eigen_assert(matA.rows()==matA.cols()); 295 Index n = matA.rows(); 357 Index n = result.rows(); 362 Index rows() const { return m_hess.packedMatrix().rows(); function in struct:Eigen::internal::HessenbergDecompositionMatrixHReturnType [all...] |
/external/libvpx/libvpx/vp8/common/x86/ |
postproc_sse2.asm | 119 movsxd rcx, DWORD PTR arg(6) ;rows in a macroblock 123 ;load current and next 2 rows 130 ;load above 2 rows 234 ; int pitch, int rows, int cols,int flimit) 263 ;rows +=8; 273 ; this copies the last row down into the border 8 rows 290 ; this copies the first row up into the border 8 rows 443 cmp edx, dword arg(2) ;rows 466 ; int pitch, int rows, int cols,int flimit) 490 ;for(r=0;r<rows;r++ [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/x86/ |
postproc_sse2.asm | 119 movsxd rcx, DWORD PTR arg(6) ;rows in a macroblock 123 ;load current and next 2 rows 130 ;load above 2 rows 234 ; int pitch, int rows, int cols,int flimit) 263 ;rows +=8; 273 ; this copies the last row down into the border 8 rows 290 ; this copies the first row up into the border 8 rows 443 cmp edx, dword arg(2) ;rows 466 ; int pitch, int rows, int cols,int flimit) 490 ;for(r=0;r<rows;r++ [all...] |