Home
last modified time | relevance | path

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

/external/pdfium/core/fxcodec/fax/
Dfaxmodule.cpp681 int m_DestBitpos = 0; member in fxcodec::__anon7b3ad7730211::FaxEncoder
705 for (int i = bitlen - 1; i >= 0; --i, ++m_DestBitpos) { in AddBitStream()
707 m_LineBuf[m_DestBitpos / 8] |= 1 << (7 - m_DestBitpos % 8); in AddBitStream()
737 m_DestBitpos += 3; in FaxEncode2DLine()
738 m_LineBuf[m_DestBitpos / 8] |= 1 << (7 - m_DestBitpos % 8); in FaxEncode2DLine()
739 ++m_DestBitpos; in FaxEncode2DLine()
745 m_LineBuf[m_DestBitpos / 8] |= 1 << (7 - m_DestBitpos % 8); in FaxEncode2DLine()
750 m_DestBitpos += delta == 1 ? 1 : delta + 2; in FaxEncode2DLine()
751 m_LineBuf[m_DestBitpos / 8] |= 1 << (7 - m_DestBitpos % 8); in FaxEncode2DLine()
752 ++m_DestBitpos; in FaxEncode2DLine()
[all …]