Searched refs:bottomRows (Results 1 - 15 of 15) sorted by relevance

/external/eigen/doc/snippets/
H A DMatrixBase_bottomRows_int.cpp3 cout << "Here is a.bottomRows(2):" << endl;
4 cout << a.bottomRows(2) << endl;
5 a.bottomRows(2).setZero();
H A DMatrixBase_template_int_bottomRows.cpp3 cout << "Here is a.bottomRows<2>():" << endl;
4 cout << a.bottomRows<2>() << endl;
5 a.bottomRows<2>().setZero();
/external/eigen/doc/examples/
H A DTutorial_BlockOperations_corner.cpp14 cout << "m.bottomRows<2>() =" << endl << m.bottomRows<2>() << endl << endl;
/external/eigen/test/
H A Dcorners.cpp40 COMPARE_CORNER(bottomRows(r), block(rows-r,0,r,cols));
77 VERIFY_IS_EQUAL((matrix.template bottomRows<r>()), (matrix.template block<r,cols>(rows-r,0)));
99 VERIFY_IS_EQUAL((const_matrix.template bottomRows<r>()), (const_matrix.template block<r,cols>(rows-r,0)));
H A Dsparse_basic.cpp468 if (incRows > 0) refMat1.bottomRows(incRows).setZero();
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h428 inline RowsBlockXpr bottomRows(Index n) function
433 /** This is the const version of bottomRows(Index).*/
434 inline ConstRowsBlockXpr bottomRows(Index n) const function
453 inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N) function
458 /** This is the const version of bottomRows<int>().*/
460 inline typename ConstNRowsBlockXpr<N>::Type bottomRows(Index n = N) const function
/external/chromium_org/third_party/skia/src/utils/
H A DSkTextureCompressor_R11EAC.cpp353 static inline uint64_t interleave6(uint64_t topRows, uint64_t bottomRows) {
360 // This function expects topRows and bottomRows to contain the first two rows
363 // If the architecture is big endian, then topRows and bottomRows will contain the following:
368 // If the architecture is little endian, then topRows and bottomRows will contain
382 uint64_t x = (static_cast<uint64_t>(topRows) << 32) | static_cast<uint64_t>(bottomRows);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
H A DRevisionHistoryView.js271 var bottomRows = [];
/external/eigen/Eigen/src/LU/
H A DFullPivLU.h705 c.bottomRows(rows-cols)
706 -= dec().matrixLU().bottomRows(rows-cols)
/external/eigen/Eigen/src/QR/
H A DHouseholderQR.h331 dst.bottomRows(cols-rank).setZero();
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h155 y.bottomRows(cols()-rk).setZero();
/external/eigen/Eigen/src/Householder/
H A DHouseholderSequence.h314 dst.bottomRows(rows()-m_shift-actual_k)
/external/eigen/Eigen/src/Eigenvalues/
H A DRealQZ.h484 essential2 = hr.template bottomRows<2>();
496 essential2 = hr.template bottomRows<2>();
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h180 y.bottomRows(y.rows()-rank).setZero();
/external/eigen/Eigen/src/Core/
H A DPlainObjectBase.h721 _this.bottomRightCorner(new_rows, other.cols()) = other.bottomRows(new_rows);

Completed in 346 milliseconds