HomeSort by relevance Sort by last modified time
    Searched defs:m_matrix (Results 1 - 25 of 32) sorted by null

1 2

  /external/pdfium/xfa/fwl/
cfwl_picturebox.h 33 CFX_Matrix m_matrix; member in class:CFWL_PictureBox
  /external/pdfium/xfa/fxgraphics/
cfx_pattern.h 29 CFX_Matrix m_matrix; member in class:CFX_Pattern
  /external/pdfium/xfa/fxbarcode/pdf417/
BC_PDF417BarcodeMatrix.h 31 CFX_ArrayTemplate<CBC_BarcodeRow*> m_matrix; member in class:CBC_BarcodeMatrix
  /external/pdfium/xfa/fxbarcode/qrcode/
BC_QRCoder.h 60 std::unique_ptr<CBC_CommonByteMatrix> m_matrix; member in class:CBC_QRCoder
  /external/pdfium/xfa/fxfa/
xfa_rendercontext.h 39 CFX_Matrix m_matrix; member in class:CXFA_RenderContext
  /external/eigen/Eigen/src/Core/
CwiseUnaryView.h 68 : m_matrix(mat), m_functor(func) {}
72 EIGEN_STRONG_INLINE Index rows() const { return m_matrix.rows(); }
73 EIGEN_STRONG_INLINE Index cols() const { return m_matrix.cols(); }
80 nestedExpression() const { return m_matrix; }
84 nestedExpression() { return m_matrix.const_cast_derived(); }
87 MatrixTypeNested m_matrix; member in class:Eigen::CwiseUnaryView
Replicate.h 75 : m_matrix(matrix), m_rowFactor(RowFactor), m_colFactor(ColFactor)
85 : m_matrix(matrix), m_rowFactor(rowFactor), m_colFactor(colFactor)
92 inline Index rows() const { return m_matrix.rows() * m_rowFactor.value(); }
94 inline Index cols() const { return m_matrix.cols() * m_colFactor.value(); }
99 return m_matrix;
103 MatrixTypeNested m_matrix; member in class:Eigen::Replicate
Diagonal.h 73 explicit inline Diagonal(MatrixType& matrix, Index a_index = DiagIndex) : m_matrix(matrix), m_index(a_index) {}
80 return m_index.value()<0 ? numext::mini<Index>(m_matrix.cols(),m_matrix.rows()+m_index.value())
81 : numext::mini<Index>(m_matrix.rows(),m_matrix.cols()-m_index.value());
90 return m_matrix.outerStride() + 1;
106 inline ScalarWithConstIfNotLvalue* data() { return &(m_matrix.coeffRef(rowOffset(), colOffset())); }
108 inline const Scalar* data() const { return &(m_matrix.coeffRef(rowOffset(), colOffset())); }
114 return m_matrix.coeffRef(row+rowOffset(), row+colOffset());
120 return m_matrix.coeffRef(row+rowOffset(), row+colOffset())
162 typename internal::ref_selector<MatrixType>::non_const_type m_matrix; member in class:Eigen::Diagonal
    [all...]
IO.h 99 : m_matrix(matrix), m_format(format)
104 return internal::print_matrix(s, wf.m_matrix.eval(), wf.m_format);
108 typename ExpressionType::Nested m_matrix; member in class:Eigen::WithFormat
Reverse.h 88 EIGEN_DEVICE_FUNC explicit inline Reverse(const MatrixType& matrix) : m_matrix(matrix) { }
92 EIGEN_DEVICE_FUNC inline Index rows() const { return m_matrix.rows(); }
93 EIGEN_DEVICE_FUNC inline Index cols() const { return m_matrix.cols(); }
97 return -m_matrix.innerStride();
103 return m_matrix;
107 typename MatrixType::Nested m_matrix; member in class:Eigen::Reverse
SelfAdjointView.h 73 explicit inline SelfAdjointView(MatrixType& matrix) : m_matrix(matrix)
77 inline Index rows() const { return m_matrix.rows(); }
79 inline Index cols() const { return m_matrix.cols(); }
81 inline Index outerStride() const { return m_matrix.outerStride(); }
83 inline Index innerStride() const { return m_matrix.innerStride(); }
92 return m_matrix.coeff(row, col);
103 return m_matrix.coeffRef(row, col);
108 const MatrixTypeNestedCleaned& _expression() const { return m_matrix; }
111 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; }
113 MatrixTypeNestedCleaned& nestedExpression() { return m_matrix; }
251 MatrixTypeNested m_matrix; member in class:Eigen::SelfAdjointView
    [all...]
Transpose.h 64 explicit inline Transpose(MatrixType& matrix) : m_matrix(matrix) {}
68 EIGEN_DEVICE_FUNC inline Index rows() const { return m_matrix.cols(); }
69 EIGEN_DEVICE_FUNC inline Index cols() const { return m_matrix.rows(); }
74 nestedExpression() const { return m_matrix; }
79 nestedExpression() { return m_matrix; }
83 m_matrix.resize(ncols,nrows);
87 typename internal::ref_selector<MatrixType>::non_const_type m_matrix; member in class:Eigen::Transpose
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 101 : m_matrix(size,size),
120 : m_matrix(matrix.derived()),
130 _compute(m_matrix, m_hCoeffs, m_temp);
154 m_matrix = matrix.derived();
161 _compute(m_matrix, m_hCoeffs, m_temp);
217 return m_matrix;
237 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate())
238 .setLength(m_matrix.rows() - 1)
275 MatrixType m_matrix; member in class:Eigen::HessenbergDecomposition
Tridiagonalization.h 114 : m_matrix(size,size),
131 : m_matrix(matrix.derived()),
135 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs);
159 m_matrix = matrix.derived();
161 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs);
222 return m_matrix;
243 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate())
244 .setLength(m_matrix.rows() - 1)
268 return MatrixTReturnType(m_matrix.real());
300 MatrixType m_matrix; member in class:Eigen::Tridiagonalization
549 typename MatrixType::Nested m_matrix; member in struct:Eigen::internal::TridiagonalizationMatrixTReturnType
    [all...]
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
Scaling.h 83 m_matrix = mat;
93 for (int k=0; k<m_matrix.outerSize(); ++k)
95 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it)
117 for (int k=0; k<m_matrix.outerSize(); ++k)
119 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it)
146 mat = m_matrix;
178 MatrixType m_matrix; member in class:Eigen::IterScaling
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 64 : m_dummy(0,0), m_matrix(m_dummy)
69 : m_matrix(mat)
74 return m_matrix;
80 m_matrix.~Ref<const MatrixType>();
81 ::new (&m_matrix) Ref<const MatrixType>(mat.derived());
86 if(&(mat.derived()) != &m_matrix)
88 m_matrix.~Ref<const MatrixType>();
89 ::new (&m_matrix) Ref<const MatrixType>(mat);
95 ActualMatrixType m_matrix; member in class:Eigen::internal::generic_matrix_wrapper
  /external/eigen/Eigen/src/SparseCore/
SparseCompressedBase.h 282 evaluator() : m_matrix(0), m_zero(0)
286 explicit evaluator(const Derived &mat) : m_matrix(&mat), m_zero(0)
292 return m_matrix->nonZeros();
295 operator Derived&() { return m_matrix->const_cast_derived(); }
296 operator const Derived&() const { return *m_matrix; }
306 return m_matrix->const_cast_derived().valuePtr()[p];
313 return m_matrix->const_cast_derived().valuePtr()[p];
320 eigen_internal_assert(row>=0 && row<m_matrix->rows() && col>=0 && col<m_matrix->cols());
325 Index start = m_matrix->outerIndexPtr()[outer]
333 const Derived *m_matrix; member in struct:Eigen::internal::evaluator
    [all...]
SparseView.h 56 : m_matrix(mat), m_reference(reference), m_epsilon(epsilon) {}
58 inline Index rows() const { return m_matrix.rows(); }
59 inline Index cols() const { return m_matrix.cols(); }
61 inline Index innerSize() const { return m_matrix.innerSize(); }
62 inline Index outerSize() const { return m_matrix.outerSize(); }
66 nestedExpression() const { return m_matrix; }
72 MatrixTypeNested m_matrix; member in class:Eigen::SparseView
SparseBlock.h 32 : m_matrix(xpr), m_outerStart(convert_index(i)), m_outerSize(OuterSize)
36 : m_matrix(xpr), m_outerStart(convert_index(IsRowMajor ? startRow : startCol)), m_outerSize(convert_index(IsRowMajor ? blockRows : blockCols))
39 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
40 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }
45 EvaluatorType matEval(m_matrix);
56 return m_matrix.coeff(row + (IsRowMajor ? m_outerStart : 0), col + (IsRowMajor ? 0 : m_outerStart));
61 return m_matrix.coeff(IsRowMajor ? m_outerStart : index, IsRowMajor ? index : m_outerStart);
64 inline const XprType& nestedExpression() const { return m_matrix; }
65 inline XprType& nestedExpression() { return m_matrix; }
68 Index blockRows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows();
73 typename internal::ref_selector<XprType>::non_const_type m_matrix; member in class:Eigen::BlockImpl
278 typename internal::ref_selector<SparseMatrixType>::non_const_type m_matrix; member in class:Eigen::internal::sparse_matrix_block_impl
439 typename internal::ref_selector<XprType>::non_const_type m_matrix; member in class:Eigen::BlockImpl
    [all...]
  /external/eigen/Eigen/src/SparseLU/
SparseLU_SupernodalMatrix.h 186 : m_matrix(mat),
201 inline Scalar value() const { return m_matrix.valuePtr()[m_idval]; }
203 inline Scalar& valueRef() { return const_cast<Scalar&>(m_matrix.valuePtr()[m_idval]); }
205 inline Index index() const { return m_matrix.rowIndex()[m_idrow]; }
218 const MappedSuperNodalMatrix& m_matrix; // Supernodal lower triangular matrix member in class:Eigen::internal::MappedSuperNodalMatrix::InnerIterator
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 375 evaluator() : m_matrix(0) {}
376 evaluator(const SparseMatrixType &mat) : m_matrix(&mat) {}
378 operator SparseMatrixType&() { return m_matrix->const_cast_derived(); }
379 operator const SparseMatrixType&() const { return *m_matrix; }
381 Scalar coeff(Index row, Index col) const { return m_matrix->coeff(row,col); }
383 Index nonZerosEstimate() const { return m_matrix->nonZeros(); }
385 const SparseMatrixType *m_matrix; member in class:Eigen::DynamicSparseMatrix
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 78 : m_matrix(),
91 : m_matrix(size, size),
106 : m_matrix(matrix.rows(), matrix.cols()),
123 : m_matrix(matrix.derived()),
144 return Traits::getU(m_matrix);
151 return Traits::getL(m_matrix);
166 return m_matrix.diagonal();
203 eigen_assert(m_matrix.rows()==b.rows()
233 return m_matrix;
245 inline Index rows() const { return m_matrix.rows();
278 MatrixType m_matrix; member in class:Eigen::LDLT
    [all...]
LLT.h 80 LLT() : m_matrix(), m_isInitialized(false) {}
88 explicit LLT(Index size) : m_matrix(size, size),
93 : m_matrix(matrix.rows(), matrix.cols()),
108 : m_matrix(matrix.derived()),
118 return Traits::getU(m_matrix);
125 return Traits::getL(m_matrix);
143 eigen_assert(m_matrix.rows()==b.rows()
171 return m_matrix;
195 inline Index rows() const { return m_matrix.rows(); }
196 inline Index cols() const { return m_matrix.cols();
218 MatrixType m_matrix; member in class:Eigen::LLT
    [all...]
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 72 : m_matrix(matrix)
75 EIGEN_DEVICE_FUNC inline Index rows() const { return m_matrix.rows() + (int(Direction)==Vertical ? 1 : 0); }
76 EIGEN_DEVICE_FUNC inline Index cols() const { return m_matrix.cols() + (int(Direction)==Horizontal ? 1 : 0); }
78 EIGEN_DEVICE_FUNC const NestedExpression& nestedExpression() const { return m_matrix; }
108 return func(m_matrix.redux(func), Scalar(1));
112 typename MatrixType::Nested m_matrix; member in class:Eigen::Homogeneous
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 99 inline Index cols() const { return m_matrix.cols(); }
100 inline Index rows() const { return m_matrix.rows(); }
145 s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(int)+sizeof(Scalar))) >> 20) << "Mb" << "\n";
159 eigen_assert(m_matrix.rows()==b.rows());
169 if(m_matrix.nonZeros()>0) // otherwise L==I
175 if (m_matrix.nonZeros()>0) // otherwise U==I
255 CholMatrixType m_matrix; member in class:Eigen::SimplicialCholeskyBase
354 return Traits::getL(Base::m_matrix);
360 return Traits::getU(Base::m_matrix);
    [all...]

Completed in 923 milliseconds

1 2