HomeSort by relevance Sort by last modified time
    Searched refs:m_A (Results 1 - 6 of 6) sorted by null

  /external/pdfium/core/fxcodec/jbig2/
JBig2_ArithDecoder.cpp 65 m_A = kDefaultAValue;
75 m_A -= qe.Qe;
76 if ((m_C >> 16) < m_A) {
77 if (m_A & kDefaultAValue)
80 const int D = m_A < qe.Qe ? DecodeNLPS(pCX, qe) : DecodeNMPS(pCX, qe);
85 m_C -= m_A << 16;
86 const int D = m_A < qe.Qe ? DecodeNMPS(pCX, qe) : DecodeNLPS(pCX, qe);
87 m_A = qe.Qe;
116 m_A <<= 1;
119 } while ((m_A & kDefaultAValue) == 0)
    [all...]
JBig2_ArithDecoder.h 33 unsigned int m_A;
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 100 const MatrixType& m_A;
137 m_A(T), m_p(p)
147 switch (m_A.rows()) {
151 res(0,0) = pow(m_A(0,0), m_p);
180 res.coeffRef(0,0) = pow(m_A.coeff(0,0), p);
182 for (Index i=1; i < m_A.cols(); ++i) {
183 res.coeffRef(i,i) = pow(m_A.coeff(i,i), p);
184 if (m_A.coeff(i-1,i-1) == m_A.coeff(i,i))
185 res.coeffRef(i-1,i) = p * pow(m_A.coeff(i,i), p-1)
    [all...]
MatrixLogarithm.h 323 explicit MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { }
342 internal::matrix_function_compute<typename DerivedEvalTypeClean::PlainObject>::run(m_A, atomic, result);
345 Index rows() const { return m_A.rows(); }
346 Index cols() const { return m_A.cols(); }
349 const DerivedNested m_A;
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, result);
519 Index rows() const { return m_A.rows(); }
520 Index cols() const { return m_A.cols(); }
523 const DerivedNested m_A;
  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 38 : m_A(A), m_B(B)
41 inline Index rows() const { return m_A.rows() * m_B.rows(); }
42 inline Index cols() const { return m_A.cols() * m_B.cols(); }
50 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) *
61 return m_A.coeff(i / m_A.size()) * m_B.coeff(i % m_A.size());
65 typename Lhs::Nested m_A;
86 using Base::m_A;
119 using Base::m_A;
    [all...]

Completed in 226 milliseconds