HomeSort by relevance Sort by last modified time
    Searched refs:rows (Results 1 - 25 of 1585) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/tko/migrations/
029_ensure_invalidated_label_exists.py 6 rows = manager.execute(
8 if not rows:
  /external/eigen/doc/snippets/
Tutorial_commainit_02.cpp 1 int rows=5, cols=5; variable
2 MatrixXf m(rows,cols);
5 MatrixXf::Zero(rows-3,3),
6 MatrixXf::Identity(rows-3,cols-3);
Matrix_resize_int.cpp 5 cout << "v: " << v.rows() << " rows, " << v.cols() << " cols" << endl;
6 cout << "w: " << w.rows() << " rows, " << w.cols() << " cols" << endl;
Matrix_resize_NoChange_int.cpp 3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
Matrix_resize_int_NoChange.cpp 3 cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
tut_matrix_assignment_resizing.cpp 2 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/
screensize.c 5 int getscreensize(int fd, int *rows, int *cols)
14 *rows = fp->o.rows;
17 if (!*rows || !*cols) {
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/
Table.java 23 private List<Row> rows; field in class:Table
32 return rows;
35 public void setRows(List<Row> rows) {
36 this.rows = rows;
ManyListsTable.java 22 private List<Row> rows; field in class:ManyListsTable
30 return rows;
33 public void setRows(List<Row> rows) {
34 this.rows = rows;
  /external/eigen/test/
resize.cpp 12 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);
miscmatrices.cpp 20 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...]
array_replicate.cpp 23 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,3*cols)
    [all...]
  /external/eigen/failtest/
map_nonconst_ctor_on_const_ptr_2.cpp 11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
12 Map<MatrixXf> m(ptr, rows, cols);
map_nonconst_ctor_on_const_ptr_3.cpp 11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
12 Map<MatrixXf, Aligned, InnerStride<2> > m(ptr, rows, cols, InnerStride<2>());
map_nonconst_ctor_on_const_ptr_4.cpp 11 void foo(const float *ptr, DenseIndex rows, DenseIndex cols){
12 Map<CV_QUALIFIER MatrixXf, Unaligned, OuterStride<> > m(ptr, rows, cols, OuterStride<>(2));
  /external/tensorflow/tensorflow/core/kernels/
deep_conv2d_test.cc 22 static void ComputeKroneckerProduct(const int rows, const int cols,
24 for (int i = 0; i < rows; ++i) {
27 const int output_index_base = cols * (i * rows * cols + j);
28 for (int k = 0; k < rows; ++k) {
46 const int rows = 2; local
51 const int kron_rows = rows * rows;
55 ComputeKroneckerProduct(rows, cols, &transform_matrix[0],
75 const int rows = 4; local
80 const int kron_rows = rows * rows
106 const int rows = 4; local
136 const int rows = 2; local
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/CodeGen/PBQP/
Math.h 116 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(m.rows), cols(m.cols), data(new PBQPNum[rows * cols])
    [all...]
  /external/libvpx/libvpx/test/
pp_filter_test.cc 29 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.
109 // 5-tap filter needs 2 padding rows above and below the block in the input.
172 void SetCols(unsigned char *s, int rows, int cols, int src_width) {
173 for (int r = 0; r < rows; r++) {
182 int rows, int cols, int src_pitch) {
183 for (int r = 0; r < rows; r++) {
192 void RunFilterLevel(unsigned char *s, int rows, int cols, int src_width,
195 GetParam()(s, src_width, rows, cols, filter_level))
201 const int rows = 16; local
218 const int rows = 16; local
235 const int rows = 16; local
257 const int rows = 16; local
315 const int rows = 16; local
351 const int rows = 16; local
382 const int rows = 16; local
402 const int rows = 16; local
    [all...]
  /external/autotest/frontend/migrations/
042_unique_index_on_hqe_job_and_host.py 23 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:
062_drone_sets_unique.py 42 rows = manager.execute(query)
43 if rows:
  /external/eigen/doc/examples/
class_Block.cpp 8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols)
10 return Eigen::Block<Derived>(m.derived(), 0, 0, rows, cols);
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols)
17 return Eigen::Block<const Derived>(m.derived(), 0, 0, rows, cols);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
NonSquareMatrixException.java 35 * @param rows number of rows of the faulty matrix
38 public NonSquareMatrixException(final int rows, final int columns) {
39 super(LocalizedFormats.NON_SQUARE_MATRIX, rows, columns);
  /external/autotest/tko/
query_history.cgi 16 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/skia/src/sksl/ir/
SkSLType.cpp 24 if (this->columns() == other.columns() && this->rows() == other.rows()) {
49 const Type& Type::toCompound(const Context& context, int columns, int rows) const {
51 if (columns == 1 && rows == 1) {
55 switch (rows) {
84 default: ABORT("unsupported row count (%d)", rows);
87 switch (rows) {
116 default: ABORT("unsupported row count (%d)", rows);
119 switch (rows) {
148 default: ABORT("unsupported row count (%d)", rows);
    [all...]
  /external/skqp/src/sksl/ir/
SkSLType.cpp 24 if (this->columns() == other.columns() && this->rows() == other.rows()) {
49 const Type& Type::toCompound(const Context& context, int columns, int rows) const {
51 if (columns == 1 && rows == 1) {
55 switch (rows) {
84 default: ABORT("unsupported row count (%d)", rows);
87 switch (rows) {
116 default: ABORT("unsupported row count (%d)", rows);
119 switch (rows) {
148 default: ABORT("unsupported row count (%d)", rows);
    [all...]

Completed in 459 milliseconds

1 2 3 4 5 6 7 8 91011>>