Searched refs:m_A (Results 1 – 7 of 7) sorted by relevance
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixPower.h | 54 const MatrixType& m_A; variable 73 m_A(T), m_p(p) in MatrixPowerAtomic() 79 res.resizeLike(m_A); in compute() 80 switch (m_A.rows()) { in compute() 84 res(0,0) = std::pow(m_A(0,0), m_p); in compute() 113 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p); in compute2x2() 115 for (Index i=1; i < m_A.cols(); ++i) { in compute2x2() 116 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p); in compute2x2() 117 if (m_A.coeff(i-1,i-1) == m_A.coeff(i,i)) in compute2x2() 118 res.coeffRef(i-1,i) = p * pow(m_A.coeff(i,i), p-1); in compute2x2() [all …]
|
D | MatrixSquareRoot.h | 40 : m_A(A) in MatrixSquareRootQuasiTriangular() 75 const MatrixType& m_A; variable 82 result.resize(m_A.rows(), m_A.cols()); in compute() 83 computeDiagonalPartOfSqrt(result, m_A); in compute() 84 computeOffDiagonalPartOfSqrt(result, m_A); in compute() 94 const Index size = m_A.rows(); in computeDiagonalPartOfSqrt() 113 const Index size = m_A.rows(); in computeOffDiagonalPartOfSqrt() 260 : m_A(A) in MatrixSquareRootTriangular() 277 const MatrixType& m_A; 288 result.resize(m_A.rows(), m_A.cols()); in compute() [all …]
|
D | MatrixFunction.h | 90 MatrixFunction(const MatrixType& A, AtomicType& atomic) : m_A(A), m_atomic(atomic) { } in MatrixFunction() 104 ComplexMatrix CA = m_A.template cast<ComplexScalar>(); in compute() 112 …typename internal::nested<MatrixType>::type m_A; /**< \brief Reference to argument of matrix funct… 161 …typename internal::nested<MatrixType>::type m_A; /**< \brief Reference to argument of matrix funct… variable 190 : m_A(A), m_atomic(atomic) in MatrixFunction() 219 const ComplexSchur<MatrixType> schurOfA(m_A); in computeSchurDecomposition() 503 MatrixFunctionReturnValue(const Derived& A, StemFunction f) : m_A(A), m_f(f) { } in MatrixFunctionReturnValue() 523 const PlainObject Aevaluated = m_A.eval(); in evalTo() 528 Index rows() const { return m_A.rows(); } in rows() 529 Index cols() const { return m_A.cols(); } in cols() [all …]
|
D | MatrixLogarithm.h | 432 MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { } in MatrixLogarithmReturnValue() 451 const PlainObject Aevaluated = m_A.eval(); in evalTo() 456 Index rows() const { return m_A.rows(); } in rows() 457 Index cols() const { return m_A.cols(); } in cols() 460 typename internal::nested<Derived>::type m_A;
|
/external/pdfium/core/src/fxcodec/jbig2/ |
D | JBig2_ArithDecoder.cpp | 96 m_A = kDefaultAValue; in CJBig2_ArithDecoder() 107 m_A -= qe.Qe; in DECODE() 108 if ((m_C >> 16) < m_A) { in DECODE() 109 if (m_A & kDefaultAValue) in DECODE() 112 const int D = m_A < qe.Qe ? DecodeNLPS(pCX, qe) : DecodeNMPS(pCX, qe); in DECODE() 117 m_C -= m_A << 16; in DECODE() 118 const int D = m_A < qe.Qe ? DecodeNMPS(pCX, qe) : DecodeNLPS(pCX, qe); in DECODE() 119 m_A = qe.Qe; in DECODE() 148 m_A <<= 1; in ReadValueA() 151 } while ((m_A & kDefaultAValue) == 0); in ReadValueA()
|
D | JBig2_ArithDecoder.h | 33 unsigned int m_A; variable
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
D | KroneckerTensorProduct.h | 40 : m_A(A), m_B(B) in KroneckerProduct() 46 inline Index rows() const { return m_A.rows() * m_B.rows(); } in rows() 47 inline Index cols() const { return m_A.cols() * m_B.cols(); } in cols() 51 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) * in coeff() 58 return m_A.coeff(i / m_A.size()) * m_B.coeff(i % m_A.size()); in coeff() 62 typename Lhs::Nested m_A; 88 : m_A(A), m_B(B) in KroneckerProductSparse() 94 inline Index rows() const { return m_A.rows() * m_B.rows(); } in rows() 95 inline Index cols() const { return m_A.cols() * m_B.cols(); } in cols() 106 typename Lhs::Nested m_A; [all …]
|