/external/dng_sdk/source/ |
H A D | dng_matrix.h | 61 uint32 Rows () const function in class:dng_matrix
|
/external/eigen/test/ |
H A D | diagonalmatrices.cpp | 16 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime }; enumerator in enum:__anon5511 17 typedef Matrix<Scalar, Rows, 1> VectorType; 19 typedef Matrix<Scalar, Rows, Rows> SquareMatrixType; 20 typedef DiagonalMatrix<Scalar, Rows> LeftDiagonalMatrix; 22 typedef Matrix<Scalar, Rows==Dynamic?Dynamic:2*Rows, Cols==Dynamic?Dynamic:2*Cols> BigMatrix;
|
H A D | permutationmatrices.cpp | 17 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime, enumerator in enum:__anon5528 19 typedef PermutationMatrix<Rows> LeftPermutationType; 20 typedef Matrix<int, Rows, 1> LeftPermutationVectorType; 42 Matrix<Scalar,Rows,Rows> lm(lp); 58 Matrix<Scalar,Rows,Rows> lm2(lp2);
|
H A D | qr.cpp | 35 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime }; enumerator in enum:__anon5531 37 Matrix<Scalar,Rows,Cols> m1 = Matrix<Scalar,Rows,Cols>::Random(); 38 HouseholderQR<Matrix<Scalar,Rows,Cols> > qr(m1); 40 Matrix<Scalar,Rows,Cols> r = qr.matrixQR(); 42 for(int i = 0; i < Rows; i++) for(int j = 0; j < Cols; j++) if(i>j) r(i,j) = Scalar(0); 47 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
|
H A D | qr_colpivoting.cpp | 48 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime }; enumerator in enum:__anon5532 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>(); 61 Matrix<Scalar,Rows,Cols> c = qr.householderQ() * r * qr.colsPermutation().inverse(); 65 Matrix<Scalar,Rows,Cols2> m3 = m1*m2;
|
H A D | triangular.cpp | 125 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime }; enumerator in enum:__anon5538
|
H A D | main.h | 356 enum { Rows = MatrixType::RowsAtCompileTime, Cols = MatrixType::ColsAtCompileTime }; enumerator in enum:Eigen::__anon5524 359 typedef Matrix<Scalar, Rows, Rows> MatrixAType;
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
H A D | DWARFUnitIndex.h | 67 std::unique_ptr<Entry[]> Rows; member in class:llvm::DWARFUnitIndex
|
H A D | DWARFDebugLine.h | 178 Rows.push_back(R); 215 RowVector Rows; member in struct:llvm::DWARFDebugLine::LineTable
|
/external/webrtc/webrtc/modules/desktop_capture/ |
H A D | desktop_region.h | 62 typedef std::map<int, Row*> Rows; typedef in class:webrtc::DesktopRegion 85 Rows::const_iterator row_; 86 Rows::const_iterator previous_row_; 159 void MergeWithPrecedingRow(Rows::iterator row); 161 Rows rows_;
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
H A D | KroneckerTensorProduct.h | 160 Rows = size_at_compile_time<traits<Lhs>::RowsAtCompileTime, traits<Rhs>::RowsAtCompileTime>::ret, enumerator in enum:Eigen::internal::traits::__anon5549 167 typedef Matrix<Scalar,Rows,Cols> ReturnType;
|
/external/eigen/Eigen/src/Core/ |
H A D | GeneralProduct.h | 45 template<int Rows, int Cols, int Depth> struct product_type_selector; 63 Rows = _Lhs::RowsAtCompileTime, enumerator in enum:Eigen::internal::product_type::__anon5084 77 rows_select = product_size_category<Rows,MaxRows>::value, 90 EIGEN_DEBUG_VAR(Rows);
|
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
H A D | MatrixFunction.h | 74 static const int Rows = Traits::RowsAtCompileTime; member in class:Eigen::MatrixFunction 81 typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols> ComplexMatrix;
|
/external/pdfium/core/src/fpdfapi/fpdf_parser/ |
H A D | fpdf_parser_decode.cpp | 232 int Rows = 0; local 239 Rows = pParams->GetInteger("Rows"); 240 if (Rows > USHRT_MAX) { 241 Rows = 0; 243 if (Columns <= 0 || Rows < 0 || Columns > USHRT_MAX || Rows > USHRT_MAX) { 249 Columns, Rows);
|
/external/eigen/Eigen/src/Geometry/ |
H A D | Transform.h | 187 Rows = int(Mode)==(AffineCompact) ? Dim : HDim enumerator in enum:Eigen::Transform::__anon5379 193 typedef typename internal::make_proper_matrix_type<Scalar,Rows,HDim,Options>::type MatrixType;
|
/external/llvm/utils/TableGen/ |
H A D | RegisterInfoEmitter.cpp | 646 SmallVector<SmallVector<CodeGenSubRegIndex*, 4>, 4> Rows; local 652 for (unsigned r = 0, re = Rows.size(); r != re; ++r) { 653 if (combine(&Idx, Rows[r])) { 659 Found = Rows.size(); 660 Rows.resize(Found + 1); 661 Rows.back().resize(SubRegIndicesSize); 662 combine(&Idx, Rows.back()); 668 if (Rows.size() > 1) { 669 OS << " static const " << getMinimalTypeForRange(Rows.size()) << " RowMap[" 678 << " Rows[" << Row [all...] |
/external/pdfium/core/src/fxcodec/codec/ |
H A D | fx_codec_fax.cpp | 613 int Rows); 646 int Rows) { 652 m_OrigHeight = Rows; 826 int Rows) { 829 EncodedByteAlign, BlackIs1, Columns, Rows); 637 Create(const uint8_t* src_buf, FX_DWORD src_size, int width, int height, int K, FX_BOOL EndOfLine, FX_BOOL EncodedByteAlign, FX_BOOL BlackIs1, int Columns, int Rows) argument 816 CreateDecoder( const uint8_t* src_buf, FX_DWORD src_size, int width, int height, int K, FX_BOOL EndOfLine, FX_BOOL EncodedByteAlign, FX_BOOL BlackIs1, int Columns, int Rows) argument
|
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/ |
H A D | vktShaderRenderMatrixTests.cpp | 618 template <typename T, int Rows, int Cols> 619 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T, Rows, Cols>& b) 621 tcu::Matrix<T, Rows, Cols> retVal; 623 for (int r = 0; r < Rows; ++r) 632 template <typename T, int Rows, int Cols> 633 tcu::Matrix<T, Cols, Rows> transpose (const tcu::Matrix<T, Rows, Cols>& mat) 635 tcu::Matrix<T, Cols, Rows> retVa 1334 str << "mat" << Cols << "x" << Rows; local [all...] |
/external/deqp/modules/gles2/functional/ |
H A D | es2fShaderMatrixTests.cpp | 392 template <typename T, int Rows, int Cols> 393 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T, Rows, Cols>& b) 395 tcu::Matrix<T, Rows, Cols> retVal; 397 for (int r = 0; r < Rows; ++r) 406 template <typename T, int Rows, int Cols> 407 tcu::Matrix<T, Rows, Cols> negate (const tcu::Matrix<T, Rows, Cols>& mat) 409 tcu::Matrix<T, Rows, Col 720 str << "mat" << Cols << "x" << Rows; local [all...] |
/external/deqp/modules/gles3/functional/ |
H A D | es3fShaderMatrixTests.cpp | 623 template <typename T, int Rows, int Cols> 624 tcu::Matrix<T, Rows, Cols> matrixCompMult (const tcu::Matrix<T, Rows, Cols>& a, const tcu::Matrix<T, Rows, Cols>& b) 626 tcu::Matrix<T, Rows, Cols> retVal; 628 for (int r = 0; r < Rows; ++r) 637 template <typename T, int Rows, int Cols> 638 tcu::Matrix<T, Cols, Rows> transpose (const tcu::Matrix<T, Rows, Cols>& mat) 640 tcu::Matrix<T, Cols, Rows> retVa 1339 str << "mat" << Cols << "x" << Rows; local [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
H A D | cmslut.c | 379 cmsStage* CMSEXPORT cmsStageAllocMatrix(cmsContext ContextID, cmsUInt32Number Rows, cmsUInt32Number Cols, argument 386 n = Rows * Cols; 391 if (n >= UINT_MAX / Rows) return NULL; 392 if (n < Rows || n < Cols) return NULL; 394 NewMPE = _cmsStageAllocPlaceholder(ContextID, cmsSigMatrixElemType, Cols, Rows,
|
/external/llvm/tools/dsymutil/ |
H A D | DwarfLinker.cpp | 548 /// \brief Emit the line table described in \p Rows into the 552 std::vector<DWARFDebugLine::Row> &Rows, 884 std::vector<DWARFDebugLine::Row> &Rows, 902 if (Rows.empty()) { 922 for (unsigned Idx = 0; Idx < Rows.size(); ++Idx) { 923 auto &Row = Rows[Idx]; 2876 /// set of already linked line info \p Rows. 2878 std::vector<DWARFDebugLine::Row> &Rows) { 2882 if (!Rows.empty() && Rows 881 emitLineTableForUnit(MCDwarfLineTableParams Params, StringRef PrologueBytes, unsigned MinInstLength, std::vector<DWARFDebugLine::Row> &Rows, unsigned PointerSize) argument 2877 insertLineSequence(std::vector<DWARFDebugLine::Row> &Seq, std::vector<DWARFDebugLine::Row> &Rows) argument [all...] |