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.h40 : 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()
52 m_B.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()
63 typename Rhs::Nested m_B; variable
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()
[all …]
/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_ArithDecoder.cpp91 m_B = m_pStream->getCurByte_arith(); in CJBig2_ArithDecoder()
92 m_C = (m_B ^ 0xff) << 16; in CJBig2_ArithDecoder()
126 if (m_B == 0xff) { in BYTEIN()
132 m_B = B1; in BYTEIN()
133 m_C = m_C + 0xfe00 - (m_B << 9); in BYTEIN()
138 m_B = m_pStream->getCurByte_arith(); in BYTEIN()
139 m_C = m_C + 0xff00 - (m_B << 8); in BYTEIN()
DJBig2_ArithDecoder.h31 unsigned char m_B; variable