Searched refs:m_A (Results 1 – 6 of 6) sorted by relevance
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
D | MatrixPower.h | 100 const MatrixType& m_A; variable 137 m_A(T), m_p(p) in MatrixPowerAtomic() 147 switch (m_A.rows()) { in compute() 151 res(0,0) = pow(m_A(0,0), m_p); in compute() 180 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p); in compute2x2() 182 for (Index i=1; i < m_A.cols(); ++i) { in compute2x2() 183 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p); in compute2x2() 184 if (m_A.coeff(i-1,i-1) == m_A.coeff(i,i)) in compute2x2() 185 res.coeffRef(i-1,i) = p * pow(m_A.coeff(i,i), p-1); in compute2x2() 186 …else if (2*abs(m_A.coeff(i-1,i-1)) < abs(m_A.coeff(i,i)) || 2*abs(m_A.coeff(i,i)) < abs(m_A.coeff(… in compute2x2() [all …]
|
D | MatrixLogarithm.h | 323 explicit MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { } in MatrixLogarithmReturnValue() 342 …internal::matrix_function_compute<typename DerivedEvalTypeClean::PlainObject>::run(m_A, atomic, re… in evalTo() 345 Index rows() const { return m_A.rows(); } in rows() 346 Index cols() const { return m_A.cols(); } in cols() 349 const DerivedNested m_A;
|
D | MatrixFunction.h | 496 MatrixFunctionReturnValue(const Derived& A, StemFunction f) : m_A(A), m_f(f) { } 516 …internal::matrix_function_compute<typename NestedEvalTypeClean::PlainObject>::run(m_A, atomic, res… 519 Index rows() const { return m_A.rows(); } 520 Index cols() const { return m_A.cols(); } 523 const DerivedNested m_A;
|
/external/pdfium/core/fxcodec/jbig2/ |
D | JBig2_ArithDecoder.cpp | 65 m_A = kDefaultAValue; in CJBig2_ArithDecoder() 75 m_A -= qe.Qe; in DECODE() 76 if ((m_C >> 16) < m_A) { in DECODE() 77 if (m_A & kDefaultAValue) in DECODE() 80 const int D = m_A < qe.Qe ? DecodeNLPS(pCX, qe) : DecodeNMPS(pCX, qe); in DECODE() 85 m_C -= m_A << 16; in DECODE() 86 const int D = m_A < qe.Qe ? DecodeNMPS(pCX, qe) : DecodeNLPS(pCX, qe); in DECODE() 87 m_A = qe.Qe; in DECODE() 125 m_A <<= 1; in ReadValueA() 128 } while ((m_A & kDefaultAValue) == 0); in ReadValueA()
|
D | JBig2_ArithDecoder.h | 41 unsigned int m_A; variable
|
/external/eigen/unsupported/Eigen/src/KroneckerProduct/ |
D | KroneckerTensorProduct.h | 38 : m_A(A), m_B(B) in KroneckerProductBase() 41 inline Index rows() const { return m_A.rows() * m_B.rows(); } in rows() 42 inline Index cols() const { return m_A.cols() * m_B.cols(); } in cols() 50 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) * in coeff() 61 return m_A.coeff(i / m_A.size()) * m_B.coeff(i % m_A.size()); in coeff() 65 typename Lhs::Nested m_A; 86 using Base::m_A; 119 using Base::m_A; 140 for (Index i=0; i < m_A.rows(); ++i) in evalTo() 141 for (Index j=0; j < m_A.cols(); ++j) in evalTo() [all …]
|