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

<<11121314151617181920>>

  /external/syslinux/com32/modules/
dir.c 14 static int rows, cols; /* Screen parameters */ variable
119 perpage = ncols * (rows - 1);
122 /* Rows on this page */
158 if (getscreensize(1, &rows, &cols)) {
160 rows = 24;
ls.c 14 static int rows, cols; /* Screen parameters */ variable
119 perpage = ncols * (rows - 1);
122 /* Rows on this page */
158 if (getscreensize(1, &rows, &cols)) {
160 rows = 24;
  /packages/apps/Messaging/src/com/android/messaging/datamodel/
FrequentContactsCursorBuilder.java 105 final ArrayList<Object[]> rows = local
129 rows.add(row);
134 // Now we have a list of rows containing frequent contacts in alphabetical order.
135 // Therefore, sort all the rows according to their actual ranks in the frequents list.
136 Collections.sort(rows, new Comparator<Object[]>() {
171 // Finally, add all the rows to this cursor.
172 for (final Object[] row : rows) {
  /external/ImageMagick/coders/
xbm.c 250 image->rows=height;
278 if ((image->columns == 0) || (image->rows == 0) ||
300 status=SetImageExtent(image,image->columns,image->rows,exception);
342 length=(unsigned int) image->rows;
349 for (i=0; i < (ssize_t) (bytes_per_line*image->rows); (i+=2))
357 for (i=0; i < (ssize_t) (bytes_per_line*image->rows); i++)
366 for (y=0; y < (ssize_t) image->rows; y++)
387 image->rows);
536 basename,(double) image->rows);
554 for (y=0; y < (ssize_t) image->rows; y++
    [all...]
tile.c 120 if ((image->columns == 0) || (image->rows == 0))
124 status=SetImageExtent(image,image->columns,image->rows,exception);
clipboard.c 170 if ((image->columns == 0) || (image->rows == 0))
173 image->rows=bitmap.bmHeight;
175 status=SetImageExtent(image,image->columns,image->rows,exception);
184 DIBinfo.bmiHeader.biHeight=(-1)*(LONG) image->rows;
217 BitBlt(hDC,0,0,(int) image->columns,(int) image->rows,hMemDC,0,0,SRCCOPY);
220 for (y=0; y < (ssize_t) image->rows; y++)
hrz.c 146 image->rows=240;
148 status=SetImageExtent(image,image->columns,image->rows,exception);
156 for (y=0; y < (ssize_t) image->rows; y++)
175 if (SetImageProgress(image,LoadImageTag,y,image->rows) == MagickFalse)
331 for (y=0; y < (ssize_t) hrz_image->rows; y++)
347 status=SetImageProgress(image,SaveImageTag,y,hrz_image->rows);
mono.c 135 if ((image->columns == 0) || (image->rows == 0))
157 status=SetImageExtent(image,image->columns,image->rows,exception);
163 for (y=0; y < (ssize_t) image->rows; y++)
187 image->rows);
329 for (y=0; y < (ssize_t) image->rows; y++)
359 image->rows);
  /external/eigen/test/
eigensolver_selfadjoint.cpp 75 Index rows = m.rows(); local
83 MatrixType a = MatrixType::Random(rows,cols);
84 MatrixType a1 = MatrixType::Random(rows,cols);
93 MatrixType b = MatrixType::Random(rows,cols);
94 MatrixType b1 = MatrixType::Random(rows,cols);
132 MatrixType id = MatrixType::Identity(rows, cols);
152 if(rows>1 && cols>1) {
154 //VERIFY(T.topRightCorner(rows-2, cols-2).template triangularView<Upper>().isZero());
162 if(rows > 1
    [all...]
stable_norm.cpp 54 Index rows = m.rows(); local
68 MatrixType vzero = MatrixType::Zero(rows, cols),
69 vrand = MatrixType::Random(rows, cols),
70 vbig(rows, cols),
71 vsmall(rows,cols);
111 Index i = internal::random<Index>(0,rows-1);
155 Index i2 = internal::random<Index>(0,rows-1);
  /external/ImageMagick/Magick++/lib/Magick++/
Pixels.h 64 size_t rows(void) const;
147 inline size_t Magick::Pixels::rows(void) const function in class:Magick::Pixels
  /external/autotest/scheduler/
monitor_db_cleanup.py 94 rows = self._db.execute("""
101 id__in=[row[0] for row in rows])
276 rows = self._db.execute("""
287 if rows:
290 for row in rows]
295 rows = self._db.execute("""
303 if rows:
305 ', '.join(row[0] for row in rows))
  /external/eigen/Eigen/src/Cholesky/
LLT_LAPACKE.h 51 eigen_assert(m.rows()==m.cols()); \
53 size = convert_index<lapack_int>(m.rows()); \
  /external/eigen/Eigen/src/Core/
Assign.h 30 eigen_assert(rows() == other.rows() && cols() == other.cols());
CwiseUnaryOp.h 69 Index rows() const { return m_xpr.rows(); } function in class:Eigen::CwiseUnaryOp
NestByValue.h 44 EIGEN_DEVICE_FUNC inline Index rows() const { return m_expression.rows(); } function in class:Eigen::NestByValue
SolverBase.h 77 eigen_assert(derived().rows()==b.rows() && "solve(): invalid number of rows of the right hand side matrix b");
  /external/eigen/Eigen/src/Core/products/
TriangularMatrixVector_BLAS.h 93 Index rows = IsLower ? _rows : size; \
129 if (size<(std::max)(rows,cols)) { \
132 if (size<rows) { \
135 m = convert_index<BlasIndex>(rows-size); \
175 Index rows = IsLower ? _rows : size; \
211 if (size<(std::max)(rows,cols)) { \
214 if (size<rows) { \
217 m = convert_index<BlasIndex>(rows-size); \
  /external/eigen/Eigen/src/SparseCore/
SparseSparseProductWithPruning.h 28 Index rows = lhs.innerSize(); local
34 AmbiVector<Scalar,StorageIndex> tempVector(rows);
38 res.resize(cols, rows);
40 res.resize(rows, cols);
54 double ratioColRes = double(estimated_nnz_prod)/(double(lhs.rows())*double(rhs.cols()));
58 //double ratioColRes = (double(rhs.innerVector(j).nonZeros()) + double(lhs.nonZeros())/double(lhs.cols()))/double(lhs.rows());
93 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
107 SparseTemporaryType _res(res.rows(), res.cols());
120 typename remove_all<ResultType>::type _res(res.rows(), res.cols());
140 // SparseTemporaryType _res(res.cols(), res.rows());
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
IncompleteLU.h 38 Index rows() const { return m_lu.rows(); } function in class:Eigen::IncompleteLU
  /external/gemmlowp/test/
correctness_meta_gemm.cc 47 void prepare_test_data(std::uint8_t* data, std::int32_t rows, std::int32_t cols,
50 for (int i = 0; i < rows; ++i) {
62 std::int32_t rows, std::int32_t cols, std::int32_t depth,
68 for (int i = 0; i < rows; ++i) {
118 std::int32_t rows, std::int32_t cols, std::int32_t depth,
122 for (int i = 0; i < rows; ++i) {
163 void clear(T* result, std::int32_t rows, std::int32_t cols) {
164 for (int i = 0; i < rows * cols; ++i) {
  /external/libvpx/libvpx/vp9/common/
vp9_idct.h 30 transform_1d cols, rows; // vertical and horizontal member in struct:__anon24520
37 highbd_transform_1d cols, rows; // vertical and horizontal member in struct:__anon24521
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/transport/
ProcessTransport.java 86 public void setDimensions(int columns, int rows, int width, int height) {
88 Exec.setPtyWindowSize(shellFd, rows, columns, width, height);
  /external/ImageMagick/MagickCore/
transform.c 227 (chop_info->y > (ssize_t) image->rows))
232 if ((extent.y+(ssize_t) extent.height) > (ssize_t) image->rows)
233 extent.height=(size_t) ((ssize_t) image->rows-extent.y);
244 chop_image=CloneImage(image,image->columns-extent.width,image->rows-
311 proceed=SetImageProgress(image,ChopImageTag,progress++,image->rows);
323 for (y=0; y < (ssize_t) (image->rows-(extent.y+extent.height)); y++)
376 proceed=SetImageProgress(image,ChopImageTag,progress++,image->rows);
448 cmyk_image=CloneImage(images,images->columns,images->rows,MagickTrue,
459 for (y=0; y < (ssize_t) images->rows; y++)
579 bounding_box.height=image->rows;
    [all...]
shear.c 153 extent[i].y+=(double) (*image)->rows/2.0;
361 source_matrixs=AcquireMatrixInfo(width,image->rows,sizeof(unsigned short),
363 destination_matrixs=AcquireMatrixInfo(width,image->rows,sizeof(unsigned short),
393 for (y=0; y < (ssize_t) image->rows; y++)
448 magick_threads(image,image,image->rows,1)
450 for (y=0; y < (ssize_t) image->rows; y++)
531 for (y=0; y < (ssize_t) image->rows; y++)
539 if ((y >= offset) && (y < ((ssize_t) image->rows-offset)))
745 rotate_image=CloneImage(image,image->rows,image->columns,MagickTrue,
748 rotate_image=CloneImage(image,image->columns,image->rows,MagickTrue
    [all...]

Completed in 1408 milliseconds

<<11121314151617181920>>