HomeSort by relevance Sort by last modified time
    Searched full:rows (Results 151 - 175 of 3134) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/PerformanceTests/Layout/
floats_50_100.html 4 <title>Floats layout performance tester with 2 columns and 100 rows</title>
floats_50_100_nested.html 4 <title>Floats layout performance tester with 2 columns and 100 rows</title>
  /external/chromium_org/third_party/skia/src/utils/
SkBoundaryPatch.cpp 44 bool SkBoundaryPatch::evalPatch(SkPoint verts[], int rows, int cols) {
45 if (rows < 2 || cols < 2) {
49 const SkScalar invR = SkScalarInvert(SkIntToScalar(rows - 1));
54 for (int x = 0; x < rows; x++) {
  /external/eigen/test/
selfadjoint.cpp 20 Index rows = m.rows(); local
23 MatrixType m1 = MatrixType::Random(rows, cols),
24 m3(rows, cols);
upperbidiagonalization.cpp 15 const typename MatrixType::Index rows = m.rows(); local
21 MatrixType a = MatrixType::Random(rows,cols);
23 RealMatrixType b(rows, cols);
cholesky.cpp 44 VectorType vec = VectorType::Random(symm.rows());
67 Index rows = m.rows(); local
75 MatrixType a0 = MatrixType::Random(rows,cols);
76 VectorType vecB = VectorType::Random(rows), vecX(rows);
77 MatrixType matB = MatrixType::Random(rows,cols), matX(rows,cols);
82 MatrixType a1 = MatrixType::Random(rows,cols);
119 MatrixType m1 = MatrixType::Random(rows,cols), m2(rows,cols)
250 Index rows = m.rows(); local
    [all...]
conservative_resize.cpp 40 const Index rows = internal::random<Index>(1,50); local
43 m.conservativeResize(rows,cols);
44 VERIFY_IS_APPROX(m, n.block(0,0,rows,cols));
50 const Index rows = internal::random<Index>(50,75); local
53 m.conservativeResizeLike(MatrixType::Zero(rows,cols));
54 VERIFY_IS_APPROX(m.block(0,0,n.rows(),n.cols()), n);
55 VERIFY( rows<=50 || m.block(50,0,rows-50,cols).sum() == Scalar(0) );
56 VERIFY( cols<=50 || m.block(0,50,rows,cols-50).sum() == Scalar(0) );
77 m.conservativeResize(m.rows(),1)
    [all...]
mapped_matrix.cpp 52 Index rows = m.rows(), cols = m.cols(), size = rows*cols; local
62 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
63 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>(array1, rows, cols);
64 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols);
65 MatrixType ma1 = Map<MatrixType>(array1, rows, cols)
    [all...]
qr_colpivoting.cpp 18 Index rows = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE), cols2 = internal::random<Index>(2,EIGEN_TEST_MAX_SIZE); local
19 Index rank = internal::random<Index>(1, (std::min)(rows, cols)-1);
24 createRandomPIMatrixOfRank(rank,rows,cols,m1);
48 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime };
50 int rank = internal::random<int>(1, (std::min)(int(Rows), int(Cols))-1);
51 Matrix<Scalar,Rows,Cols> m1;
52 createRandomPIMatrixOfRank(rank,Rows,Cols,m1);
53 ColPivHouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1);
56 VERIFY(qr.isInjective() == (rank == Rows));
60 Matrix<Scalar,Rows,Cols> r = qr.matrixQR().template triangularView<Upper>()
    [all...]
product_extra.cpp 21 Index rows = m.rows(); local
24 MatrixType m1 = MatrixType::Random(rows, cols),
25 m2 = MatrixType::Random(rows, cols),
26 m3(rows, cols),
27 mzero = MatrixType::Zero(rows, cols),
28 identity = MatrixType::Identity(rows, rows),
29 square = MatrixType::Random(rows, rows),
    [all...]
  /external/skia/src/utils/
SkBoundaryPatch.cpp 44 bool SkBoundaryPatch::evalPatch(SkPoint verts[], int rows, int cols) {
45 if (rows < 2 || cols < 2) {
49 const SkScalar invR = SkScalarInvert(SkIntToScalar(rows - 1));
54 for (int x = 0; x < rows; x++) {
  /cts/tools/signature-tools/templates/
PackageOverviewPage.st 22 $Table(name="Removed Classes and Interfaces", rows=removed_classes:{$it.from:{<tt>$it.name$</tt>}$}:SimpleTableRow())$
28 $Table(name="Added Classes and Interfaces", rows=added_classes:{$it.to:ClassReferenceLink()$}:SimpleTableRow())$
33 $Table(name="Changed Classes and Interfaces", rows=changed_classes:{$it.to:ClassChangedLink()$}:SimpleTableRow())$
  /external/chromium_org/mojo/examples/keyboard/
keys.cc 168 std::vector<const Row*> rows; local
169 rows.push_back(&kQWERTYRow1);
170 rows.push_back(&kQWERTYRow2);
171 rows.push_back(&kQWERTYRow3);
172 rows.push_back(&kQWERTYRow4);
173 return rows;
177 std::vector<const Row*> rows; local
178 rows.push_back(&kNumericRow1);
179 rows.push_back(&kNumericRow2);
180 rows.push_back(&kNumericRow3)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/tests/
copy_constant_to_storage_tests.cpp 40 void int_test(unsigned rows);
41 void uint_test(unsigned rows);
42 void bool_test(unsigned rows);
44 void float_test(unsigned columns, unsigned rows);
67 copy_constant_to_storage::int_test(unsigned rows)
70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val);
86 copy_constant_to_storage::uint_test(unsigned rows)
89 generate_data(mem_ctx, GLSL_TYPE_UINT, 1, rows, val);
105 copy_constant_to_storage::float_test(unsigned columns, unsigned rows)
108 generate_data(mem_ctx, GLSL_TYPE_FLOAT, columns, rows, val)
    [all...]
  /external/eigen/Eigen/src/Core/
CommaInitializer.h 41 : m_xpr(xpr), m_row(0), m_col(other.cols()), m_currentBlockRows(other.rows())
43 m_xpr.block(0, 0, other.rows(), other.cols()) = other;
52 const_cast<CommaInitializer&>(o).m_row = m_xpr.rows();
65 eigen_assert(m_row<m_xpr.rows()
66 && "Too many rows passed to comma initializer (operator<<)");
79 if(other.cols()==0 || other.rows()==0)
85 m_currentBlockRows = other.rows();
86 eigen_assert(m_row+m_currentBlockRows<=m_xpr.rows()
87 && "Too many rows passed to comma initializer (operator<<)");
91 eigen_assert(m_currentBlockRows==other.rows());
    [all...]
BandMatrix.h 50 using Base::rows;
72 Index len = coeffs().rows();
76 len = (std::min)(rows(),std::max<Index>(0,coeffs().rows() - (supers()-i)));
78 else if (i>=rows()-subs())
79 len = std::max<Index>(0,coeffs().rows() - (i + 1 - rows() + subs()));
85 { return Block<CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols())); }
89 { return Block<const CoefficientsType,1,SizeAtCompileTime>(coeffs(),supers(),0,1,(std::min)(rows(),cols())); }
136 dst.resize(rows(),cols())
214 inline Index rows() const { return m_rows.value(); } function in class:Eigen::internal::BandMatrix
278 inline Index rows() const { return m_rows.value(); } function in class:Eigen::internal::BandMatrixWrapper
    [all...]
  /external/eigen/test/eigen2/
eigen2_map.cpp 42 int rows = m.rows(), cols = m.cols(), size = rows*cols; local
52 Map<MatrixType, Aligned>(array1, rows, cols) = MatrixType::Ones(rows,cols);
53 Map<MatrixType>(array2, rows, cols) = Map<MatrixType>((const Scalar*)array1, rows, cols); // test non-const-correctness support in eigen2
54 Map<MatrixType>(array3unaligned, rows, cols) = Map<MatrixType>(array1, rows, cols);
55 MatrixType ma1 = Map<MatrixType>(array1, rows, cols)
    [all...]
gsl_helper.h 28 static Matrix createMatrix(int rows, int cols) { return gsl_matrix_alloc(rows,cols); }
63 static Matrix createMatrix(int rows, int cols) { return gsl_matrix_complex_alloc(rows,cols); }
100 res = gsl_matrix_alloc(m.rows(), m.cols());
101 for (int i=0 ; i<m.rows() ; ++i)
110 for (int i=0 ; i<res.rows() ; ++i)
128 for (int i=0 ; i<res.rows() ; ++i)
135 res = gsl_matrix_complex_alloc(m.rows(), m.cols());
136 for (int i=0 ; i<m.rows() ; ++i
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
bd_client.py 14 #rows = int(s.recv(4))
16 rows = 24
17 packet_size = cols * rows * 2 # double it for good measure
  /external/mesa3d/src/glsl/tests/
copy_constant_to_storage_tests.cpp 40 void int_test(unsigned rows);
41 void uint_test(unsigned rows);
42 void bool_test(unsigned rows);
44 void float_test(unsigned columns, unsigned rows);
67 copy_constant_to_storage::int_test(unsigned rows)
70 generate_data(mem_ctx, GLSL_TYPE_INT, 1, rows, val);
86 copy_constant_to_storage::uint_test(unsigned rows)
89 generate_data(mem_ctx, GLSL_TYPE_UINT, 1, rows, val);
105 copy_constant_to_storage::float_test(unsigned columns, unsigned rows)
108 generate_data(mem_ctx, GLSL_TYPE_FLOAT, columns, rows, val)
    [all...]
  /external/eigen/Eigen/src/SparseCore/
ConservativeSparseSparseProduct.h 24 Index rows = lhs.innerSize(); local
28 std::vector<bool> mask(rows,false);
29 Matrix<Scalar,Dynamic,1> values(rows);
30 Matrix<Index,Dynamic,1> indices(rows);
79 Index t200 = rows/(log2(200)*1.39);
80 Index t = (rows*100)/139;
103 for(Index i=0; i<rows; ++i)
139 ColMajorMatrix resCol(lhs.rows(),rhs.cols());
154 RowMajorMatrix resRow(lhs.rows(), rhs.cols());
167 RowMajorMatrix resRow(lhs.rows(), rhs.cols())
    [all...]
  /external/ceres-solver/internal/ceres/
normal_prior.cc 44 CHECK_GT(b_.rows(), 0);
45 CHECK_GT(A_.rows(), 0);
46 CHECK_EQ(b_.rows(), A.cols());
47 set_num_residuals(A_.rows());
48 mutable_parameter_block_sizes()->push_back(b_.rows());
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/arm/neon/
vp9_subtract_neon.c 17 void vp9_subtract_block_neon(int rows, int cols,
24 for (r = 0; r < rows; ++r) {
48 for (r = 0; r < rows; ++r) {
62 for (r = 0; r < rows; ++r) {
72 for (r = 0; r < rows; ++r) {
  /external/eigen/Eigen/src/misc/
Image.h 27 // dimension is the number of rows of the original matrix
31 MatrixType::MaxColsAtCompileTime // so it has the same number of rows and at most as many columns.
49 inline Index rows() const { return m_dec.rows(); } function in struct:Eigen::internal::image_retval_base
77 using Base::rows; \
  /frameworks/base/core/java/android/database/sqlite/
SQLiteQuery.java 25 * Represents a query that reads the resulting rows into a {@link SQLiteQuery}.
43 * Reads rows into a buffer.
49 * @param countAllRows True to count all rows that the query would
51 * @return Number of rows that were enumerated. Might not be all rows

Completed in 984 milliseconds

1 2 3 4 5 67 8 91011>>