Searched refs:rows (Results 1 - 25 of 1004) sorted by relevance

1234567891011>>

/external/autotest/tko/migrations/
H A D029_ensure_invalidated_label_exists.py6 rows = manager.execute(
8 if not rows:
/external/eigen/doc/snippets/
H A DTutorial_commainit_02.cpp1 int rows=5, cols=5; variable
2 MatrixXf m(rows,cols);
5 MatrixXf::Zero(rows-3,3),
6 MatrixXf::Identity(rows-3,cols-3);
H A DMatrix_resize_int.cpp5 cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
6 cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
H A DMatrix_resize_NoChange_int.cpp3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
H A DMatrix_resize_int_NoChange.cpp3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
H A Dtut_matrix_assignment_resizing.cpp2 std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
5 std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;
/external/syslinux/com32/lib/sys/
H A Dscreensize.c5 int getscreensize(int fd, int *rows, int *cols) argument
14 *rows = fp->o.rows;
17 if (!*rows || !*cols) {
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
H A DTable.java23 private List<Row> rows; field in class:Table
32 return rows;
35 public void setRows(List<Row> rows) { argument
36 this.rows = rows;
H A DManyListsTable.java22 private List<Row> rows; field in class:ManyListsTable
30 return rows;
33 public void setRows(List<Row> rows) { argument
34 this.rows = rows;
/external/eigen/test/
H A Dresize.cpp12 template<DenseIndex rows, DenseIndex cols>
15 MatrixXf A(rows, cols);
17 Matrix<double, rows, cols> C;
20 VERIFY(B.rows() == rows && B.cols() == cols);
22 VectorXf x(rows);
25 VERIFY(y.rows() == 1 && y.cols() == rows);
29 VERIFY(x.rows() == cols && x.cols() == 1);
H A Dmiscmatrices.cpp20 Index rows = m.rows(); local
23 Index r = internal::random<Index>(0, rows-1), r2 = internal::random<Index>(0, rows-1), c = internal::random<Index>(0, cols-1);
24 VERIFY_IS_APPROX(MatrixType::Ones(rows,cols)(r,c), static_cast<Scalar>(1));
25 MatrixType m1 = MatrixType::Ones(rows,cols);
27 VectorType v1 = VectorType::Random(rows);
33 square = MatrixType::Zero(rows, rows);
34 square.diagonal() = VectorType::Ones(rows);
[all...]
H A Darray_replicate.cpp23 Index rows = m.rows(); local
26 MatrixType m1 = MatrixType::Random(rows, cols),
27 m2 = MatrixType::Random(rows, cols);
29 VectorType v1 = VectorType::Random(rows);
37 x1.resize(rows*f1,cols*f2);
40 x1.block(i*rows,j*cols,rows,cols) = m1;
43 x2.resize(2*rows,3*cols);
48 x2.resize(rows,
[all...]
H A Dspqr_support.cpp19 int rows = internal::random<int>(1,maxRows); local
20 int cols = internal::random<int>(1,rows);
21 double density = (std::max)(8./(rows*cols), 0.01);
23 A.resize(rows,cols);
24 dA.resize(rows,cols);
27 return rows;
40 Index m = A.rows();
/external/eigen/failtest/
H A Dmap_nonconst_ctor_on_const_ptr_2.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){ argument
12 Map<MatrixXf> m(ptr, rows, cols);
H A Dmap_nonconst_ctor_on_const_ptr_3.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){ argument
12 Map<MatrixXf, Aligned, InnerStride<2> > m(ptr, rows, cols, InnerStride<2>());
H A Dmap_nonconst_ctor_on_const_ptr_4.cpp11 void foo(const float *ptr, DenseIndex rows, DenseIndex cols){ argument
12 Map<CV_QUALIFIER MatrixXf, Unaligned, OuterStride<> > m(ptr, rows, cols, OuterStride<>(2));
/external/libvpx/libvpx/test/
H A Dpp_filter_test.cc29 int rows, int cols, int flimit);
31 typedef void (*VpxMbPostProcDownFunc)(unsigned char *dst, int pitch, int rows,
58 // 5-tap filter needs 2 padding rows above and below the block in the input.
107 // 5-tap filter needs 2 padding rows above and below the block in the input.
167 void SetCols(unsigned char *s, int rows, int cols, int src_width) { argument
168 for (int r = 0; r < rows; r++) {
177 int rows, int cols, int src_pitch) {
178 for (int r = 0; r < rows; r++) {
187 void RunFilterLevel(unsigned char *s, int rows, int cols, int src_width, argument
190 GetParam()(s, src_width, rows, col
176 RunComparison(const unsigned char *expected_output, unsigned char *src_c, int rows, int cols, int src_pitch) argument
196 const int rows = 16; local
211 const int rows = 16; local
227 const int rows = 16; local
248 const int rows = 16; local
277 SetRows(unsigned char *src_c, int rows, int cols, int src_width) argument
284 RunComparison(const unsigned char *expected_output, unsigned char *src_c, int rows, int cols, int src_pitch) argument
295 RunFilterLevel(unsigned char *s, int rows, int cols, int src_width, int filter_level, const unsigned char *expected_output) argument
304 const int rows = 16; local
339 const int rows = 16; local
369 const int rows = 16; local
388 const int rows = 16; local
[all...]
/external/autotest/frontend/migrations/
H A D042_unique_index_on_hqe_job_and_host.py23 rows = manager.execute('SELECT id FROM host_queue_entries '
25 if rows:
41 rows = manager.execute('SELECT GROUP_CONCAT(id), COUNT(1) AS count '
47 for ids_string, _ in rows:
H A D062_drone_sets_unique.py42 rows = manager.execute(query)
43 if rows:
/external/eigen/doc/examples/
H A Dclass_Block.cpp8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols) argument
10 return Eigen::Block<Derived>(m.derived(), 0, 0, rows, cols);
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols) argument
17 return Eigen::Block<const Derived>(m.derived(), 0, 0, rows, cols);
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DNonSquareMatrixException.java35 * @param rows number of rows of the faulty matrix
38 public NonSquareMatrixException(final int rows, final int columns) { argument
39 super(LocalizedFormats.NON_SQUARE_MATRIX, rows, columns);
/external/autotest/tko/
H A Dquery_history.cgi16 rows = db_obj.select("time_created,user_comment,url",
20 rows = ()
23 for row in reversed(rows):
36 if rows:
37 (time_created, user_comment, last_recorded_query) = rows[-1]
/external/libyuv/files/source/
H A Dconvert_jpeg.cc38 int rows) {
42 dest->v_stride, dest->w, rows);
43 dest->y += rows * dest->y_stride;
44 dest->u += ((rows + 1) >> 1) * dest->u_stride;
45 dest->v += ((rows + 1) >> 1) * dest->v_stride;
46 dest->h -= rows;
52 int rows) {
56 dest->v_stride, dest->w, rows);
57 dest->y += rows * dest->y_stride;
58 dest->u += ((rows
35 JpegCopyI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
49 JpegI422ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
63 JpegI444ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
77 JpegI400ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
192 JpegI420ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
203 JpegI422ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
214 JpegI444ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
225 JpegI400ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
H A DMath.h116 Matrix(unsigned rows, unsigned cols) :
117 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
122 Matrix(unsigned rows, unsigned cols, PBQPNum initVal) :
123 rows(rows), cols(cols), data(new PBQPNum[rows * cols]) {
124 std::fill(data, data + (rows * cols), initVal);
129 rows(
[all...]
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dconvert_jpeg.cc38 int rows) {
46 dest->w, rows);
47 dest->y += rows * dest->y_stride;
48 dest->u += ((rows + 1) >> 1) * dest->u_stride;
49 dest->v += ((rows + 1) >> 1) * dest->v_stride;
50 dest->h -= rows;
56 int rows) {
64 dest->w, rows);
65 dest->y += rows * dest->y_stride;
66 dest->u += ((rows
35 JpegCopyI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
53 JpegI422ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
71 JpegI444ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
89 JpegI411ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
107 JpegI400ToI420(void* opaque, const uint8* const* data, const int* strides, int rows) argument
233 JpegI420ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
247 JpegI422ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
261 JpegI444ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
275 JpegI411ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
289 JpegI400ToARGB(void* opaque, const uint8* const* data, const int* strides, int rows) argument
[all...]

Completed in 434 milliseconds

1234567891011>>