Home
last modified time | relevance | path

Searched refs:m_B (Results 1 – 3 of 3) sorted by relevance

/external/eigen/unsupported/Eigen/src/KroneckerProduct/
DKroneckerTensorProduct.h38 : 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()
51 m_B.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()
66 typename Rhs::Nested m_B; variable
87 using Base::m_B;
120 using Base::m_B;
138 const Index Br = m_B.rows(), in evalTo()
[all …]
/external/pdfium/core/fxcodec/jbig2/
DJBig2_ArithDecoder.cpp60 m_B = m_pStream->getCurByte_arith(); in CJBig2_ArithDecoder()
61 m_C = (m_B ^ 0xff) << 16; in CJBig2_ArithDecoder()
94 if (m_B == 0xff) { in BYTEIN()
100 m_B = B1; in BYTEIN()
101 m_C = m_C + 0xfe00 - (m_B << 9); in BYTEIN()
106 m_B = m_pStream->getCurByte_arith(); in BYTEIN()
107 m_C = m_C + 0xff00 - (m_B << 8); in BYTEIN()
DJBig2_ArithDecoder.h31 unsigned char m_B; variable