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

  /external/eigen/unsupported/Eigen/src/KroneckerProduct/
KroneckerTensorProduct.h 40 : m_A(A), m_B(B)
46 inline Index rows() const { return m_A.rows() * m_B.rows(); }
47 inline Index cols() const { return m_A.cols() * m_B.cols(); }
51 return m_A.coeff(row / m_B.rows(), col / m_B.cols()) *
52 m_B.coeff(row % m_B.rows(), col % m_B.cols());
58 return m_A.coeff(i / m_A.size()) * m_B.coeff(i % m_A.size());
63 typename Rhs::Nested m_B;
    [all...]
  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_ArithDecoder.h 31 unsigned char m_B;
JBig2_ArithDecoder.cpp 91 m_B = m_pStream->getCurByte_arith();
92 m_C = (m_B ^ 0xff) << 16;
126 if (m_B == 0xff) {
132 m_B = B1;
133 m_C = m_C + 0xfe00 - (m_B << 9);
138 m_B = m_pStream->getCurByte_arith();
139 m_C = m_C + 0xff00 - (m_B << 8);

Completed in 109 milliseconds