/external/skia/tools/skpbench/ |
sheet.py | 72 self.cols = defaultdict(dict) 93 self.cols[fullconfig][match.bench] = getattr(match, FLAGS.result) 132 if len(self.cols[fullconfig]) != len(self.rows): 135 outfile.write('%.4g,' % func(self.cols[fullconfig]))
|
/external/syslinux/com32/lib/sys/ |
ansi.h | 57 int rows, cols; /* Screen size */ member in struct:term_info
|
file.h | 86 int rows, cols; /* Rows and columns */ member in struct:file_info::__anon31931
|
/external/webrtc/webrtc/system_wrappers/source/ |
aligned_array_unittest.cc | 57 ASSERT_EQ(arr.cols(), 7u);
|
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
atrace_agent.py | 317 cols = line.split() 318 if len(cols) >= 8 and cols[0] == 'USER': 324 cols = line.split(None, 8) 325 if len(cols) == 9: 326 tid = int(cols[1]) 327 name = cols[8]
|
/external/eigen/Eigen/src/Householder/ |
HouseholderSequence.h | 180 Index rows() const { return Side==OnTheLeft ? m_vectors.rows() : m_vectors.cols(); } 186 Index cols() const { return rows(); } function in class:Eigen::HouseholderSequence 265 for(Index k = 0; k<cols()-vecs ; ++k) 317 if(m_length>=BlockSize && dst.cols()>1) 330 Side==OnTheRight ? m_vectors.cols()-start : bs); 332 Block<Dest,Dynamic,Dynamic> sub_dst(dst,dst.rows()-rows()+m_shift+k,0, rows()-m_shift-k,dst.cols()); 338 workspace.resize(dst.cols());
|
/external/eigen/Eigen/src/PardisoSupport/ |
PardisoSupport.h | 138 inline Index cols() const { return m_size; } function in class:Eigen::PardisoImpl 262 eigen_assert(a.rows() == a.cols()); 283 eigen_assert(m_size == a.cols()); 305 eigen_assert(m_size == a.rows() && m_size == a.cols()); 330 Index nrhs = Index(b.cols()); 474 m_matrix.resize(matrix.rows(), matrix.cols()); 535 m_matrix.resize(matrix.rows(), matrix.cols());
|
/external/eigen/Eigen/src/Eigenvalues/ |
RealSchur.h | 105 : m_matT(matrix.rows(),matrix.cols()), 106 m_matU(matrix.rows(),matrix.cols()), 253 eigen_assert(matrix.cols() == matrix.rows()); 261 m_matT.setZero(matrix.rows(),matrix.cols()); 263 m_matU.setIdentity(matrix.rows(),matrix.cols()); 293 m_workspaceVector.resize(m_matT.cols()); 300 Index iu = m_matT.cols() - 1; 355 const Index size = m_matT.cols(); 387 const Index size = m_matT.cols(); 490 const Index size = m_matT.cols(); [all...] |
/external/eigen/Eigen/src/SparseCholesky/ |
SimplicialCholesky.h | 99 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::SimplicialCholeskyBase 145 s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(int)+sizeof(Scalar))) >> 20) << "Mb" << "\n"; 196 eigen_assert(matrix.rows()==matrix.cols()); 197 Index size = matrix.cols(); 208 eigen_assert(a.rows()==a.cols()); 209 Index size = a.cols(); 232 eigen_assert(a.rows()==a.cols()); 233 Index size = a.cols(); 652 eigen_assert(a.rows()==a.cols()); [all...] |
/external/eigen/test/ |
nullary.cpp | 21 for (Index j = i+1; j < A.cols(); ++j) { 26 for (Index j = 0; j < (std::min)(i, A.cols()); ++j) { 201 const Index cols = m.cols(); local 211 A.setIdentity(rows, cols); 213 VERIFY(equalsIdentity(MatrixType::Identity(rows, cols))); 216 A = MatrixType::Constant(rows,cols,s1); 218 Index j = internal::random<Index>(0,cols-1); 219 VERIFY_IS_APPROX( MatrixType::Constant(rows,cols,s1)(i,j), s1 ); 220 VERIFY_IS_APPROX( MatrixType::Constant(rows,cols,s1).coeff(i,j), s1 ) [all...] |
/external/opencv/cxcore/src/ |
cxmatrix.cpp | 144 int size = MIN(mat->rows,mat->cols); 553 CV_ASSERT( CV_IS_MAT(matrix) && matrix->rows == matrix->cols ); [all...] |
cxarray.cpp | 124 cvCreateMatHeader( int rows, int cols, int type ) 135 if( rows <= 0 || cols <= 0 ) 138 min_step = CV_ELEM_SIZE(type)*cols; 148 arr->cols = cols; 166 cvInitMatHeader( CvMat* arr, int rows, int cols, 181 if( rows <= 0 || cols <= 0 ) 182 CV_ERROR( CV_StsBadSize, "Non-positive cols or rows" ); 187 arr->cols = cols; 1583 int cols; local [all...] |
/packages/apps/Terminal/src/com/android/terminal/ |
TerminalView.java | 169 view.cols = mCols; 254 final int cols = w / mMetrics.charWidth; local 257 final boolean sizeChanged = (rows != mRows || cols != mCols || scrollRows != mScrollRows); 259 mTerm.resize(rows, cols, scrollRows); 262 mCols = cols;
|
/external/eigen/Eigen/src/Core/ |
AssignEvaluator.h | 622 EIGEN_DEVICE_FUNC Index cols() const { return m_dstExpr.cols(); } function in class:Eigen::internal::generic_dense_assignment_kernel 710 eigen_assert(dst.rows() == src.rows() && dst.cols() == src.cols()); 718 Index dstCols = src.cols(); 719 if(((dst.rows()!=dstRows) || (dst.cols()!=dstCols))) 721 eigen_assert(dst.rows() == dstRows && dst.cols() == dstCols); [all...] |
/external/opencv/cv/src/ |
cvmorph.cpp | 229 _ksize.width == element->cols && _ksize.height == element->rows) ) 384 int i, j, cols, rows; local 396 anchor.x = element->cols/2; 401 if( (unsigned)anchor.x >= (unsigned)element->cols || 409 cols = element->cols; 411 if( rows == 1 || cols == 1 ) 417 c = cols/2; 427 j2 = cols; 437 j2 = MIN( c + dx + 1, cols ); [all...] |
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
BlockSparseMatrix.h | 124 return (Flags&RowMajorBit) == 1 ? this->rows() : this->cols(); 126 Index cols() const function in class:Eigen::BlockSparseMatrixView 173 inline Index cols() const function in class:Eigen::BlockVectorView 175 return m_vec.cols(); 500 resize(blockPattern.rows(), blockPattern.cols()); 655 eigen_assert((it->value().rows() == it->value().cols() && (it->value().rows() == m_blockSize)) 662 eigen_assert((colBlocks[it->col()] == 0 || colBlocks[it->col()] == it->value().cols()) && 665 colBlocks[it->col()] = it->value().cols(); 667 nz_outer(IsColMajor ? it->col() : it->row()) += it->value().rows() * it->value().cols(); 697 StorageIndex block_size = it->value().rows()*it->value().cols(); 747 inline Index cols() const function in class:Eigen::BlockSparseMatrix [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseVector.h | 82 EIGEN_STRONG_INLINE Index cols() const { return IsColVector ? 1 : m_size; } function in class:Eigen::SparseVector 215 /** Resizes the sparse vector to \a rows x \a cols 218 * For a column vector, \a cols must be equal to 1. 223 void resize(Index rows, Index cols) 225 eigen_assert((IsColVector ? cols : rows)==1 && "Outer dimension must equal 1"); 226 resize(IsColVector ? rows : cols); 263 inline SparseVector(Index rows, Index cols) : m_size(0) { check_template_parameters(); resize(rows,cols); }
|
/external/eigen/unsupported/test/ |
special_functions.cpp | 38 Index cols = 1; local 42 ArrayType m1 = ArrayType::Random(rows,cols); 58 ArrayType m1 = ArrayType::Random(rows,cols); 59 ArrayType m2 = ArrayType::Random(rows,cols); 69 ArrayType zero = ArrayType::Zero(rows, cols); 70 ArrayType one = ArrayType::Constant(rows, cols, Scalar(1.0));
|
/external/libvpx/libvpx/vp9/common/ |
vp9_idct.c | 44 IHT_4[tx_type].cols(temp_in, temp_out); 77 ht.cols(temp_in, temp_out); 110 ht.cols(temp_in, temp_out); 232 IHT_4[tx_type].cols(temp_in, temp_out, bd); 265 ht.cols(temp_in, temp_out, bd); 298 ht.cols(temp_in, temp_out, bd);
|
/frameworks/support/core-utils/java/android/support/v4/content/ |
FileProvider.java | 442 String[] cols = new String[projection.length]; local 447 cols[i] = OpenableColumns.DISPLAY_NAME; 450 cols[i] = OpenableColumns.SIZE; 455 cols = copyOf(cols, i); 458 final MatrixCursor cursor = new MatrixCursor(cols, 1); [all...] |
/external/dng_sdk/source/ |
dng_misc_opcodes.cpp | 630 uint32 cols = overlap.W (); local 655 for (uint32 col = 0; col < cols; col += colPitch) 678 for (uint32 col = 0; col < cols; col += colPitch) 694 for (uint32 col = 0; col < cols; col += colPitch) 708 for (uint32 col = 0; col < cols; col += colPitch) 729 for (uint32 col = 0; col < cols; col += colPitch) 749 for (uint32 col = 0; col < cols; col += colPitch) 770 for (uint32 col = 0; col < cols; col += colPitch) 792 for (uint32 col = 0; col < cols; col += colPitch) 992 uint32 cols = overlap.W () local 1378 uint32 cols = overlap.W (); local [all...] |
/external/syslinux/com32/rosh/ |
rosh.c | 925 void rosh_more_buf(char *buf, int buflen, int rows, int cols, char *scrbuf) 934 (void)cols; 948 elpl = ((bufeol2 - bufeol - 1) / cols); 987 void rosh_more_fd(int fd, int rows, int cols, char *scrbuf) 1008 rosh_more_buf(buf, bufpos, rows, cols, scrbuf); 1024 int rows, cols; local 1029 ret = getscreensize(1, &rows, &cols); 1032 ROSH_DEBUG("\tROWS='%d'\tCOLS='%d'\n", rows, cols); 1036 if (!cols) 1037 cols = 75 [all...] |
/external/libvpx/libvpx/vpx_dsp/mips/ |
deblock_msa.c | 146 int32_t dst_stride, int32_t cols, 158 for (col = (cols / 16); col--;) { 186 if (0 != (cols / 16)) { 224 for (col = 0; col < (cols / 8); ++col) { 256 if (col == (cols / 8 - 1)) { 263 if (col == (cols / 8 - 1)) { 292 int32_t dst_stride, int32_t cols, 306 for (col = (cols / 16); col--;) { 351 if (0 != (cols / 16)) { 419 for (col = 0; col < cols / 8; ++col) [all...] |
/external/autotest/client/deps/nvmap_compactor/src/ |
nvmap_carveout_compactor.c | 251 int cols = (int)sqrtf(count); local 276 Scale(transformMatrix, 4.0f/cols, 4.0f/cols, 4.0f/cols); 277 Translate(transformMatrix, -cols - 1.0f, cols - 1.0f, 0.0f); 286 if (((i+1) % cols) == 0) { 287 Translate(transformMatrix, -2.0f*cols, -2.0f,
|
/external/eigen/Eigen/src/Cholesky/ |
LLT.h | 93 : m_matrix(matrix.rows(), matrix.cols()), 196 inline Index cols() const { return m_matrix.cols(); } function in class:Eigen::LLT 240 Index n = mat.cols(); 306 eigen_assert(mat.rows()==mat.cols()); 330 eigen_assert(m.rows()==m.cols()); 425 eigen_assert(a.rows()==a.cols()); 460 eigen_assert(v.size()==m_matrix.cols());
|