Home
last modified time | relevance | path

Searched refs:m_C (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/src/fxcodec/jbig2/
DJBig2_ArithDecoder.cpp92 m_C = (m_B ^ 0xff) << 16; in CJBig2_ArithDecoder()
94 m_C = m_C << 7; in CJBig2_ArithDecoder()
108 if ((m_C >> 16) < m_A) { in DECODE()
117 m_C -= m_A << 16; in DECODE()
133 m_C = m_C + 0xfe00 - (m_B << 9); in BYTEIN()
139 m_C = m_C + 0xff00 - (m_B << 8); in BYTEIN()
149 m_C <<= 1; in ReadValueA()
DJBig2_ArithDecoder.h32 unsigned int m_C; variable