Home
last modified time | relevance | path

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

/external/pdfium/fxbarcode/qrcode/
DBC_QRCoderBitVector.cpp33 CHECK(index < m_sizeInBits); in At()
39 return (m_sizeInBits + 7) >> 3; in sizeInBytes()
43 return m_sizeInBits; in Size()
48 int32_t numBitsInLastByte = m_sizeInBits & 0x7; in AppendBit()
51 m_sizeInBits -= 8; in AppendBit()
53 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte)); in AppendBit()
54 ++m_sizeInBits; in AppendBit()
63 if ((m_sizeInBits & 0x7) == 0 && numBitsLeft >= 8) { in AppendBits()
79 if (m_sizeInBits != other->Size()) in XOR()
93 if ((m_sizeInBits >> 3) == m_array.size()) in AppendByte()
[all …]
DBC_QRCoderBitVector.h33 size_t m_sizeInBits = 0; variable