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 if (index >= m_sizeInBits) { in At()
42 return (m_sizeInBits + 7) >> 3; in sizeInBytes()
46 return m_sizeInBits; in Size()
51 int32_t numBitsInLastByte = m_sizeInBits & 0x7; in AppendBit()
54 m_sizeInBits -= 8; in AppendBit()
56 m_array[m_sizeInBits >> 3] |= (bit << (7 - numBitsInLastByte)); in AppendBit()
57 ++m_sizeInBits; in AppendBit()
66 if ((m_sizeInBits & 0x7) == 0 && numBitsLeft >= 8) { in AppendBits()
87 if (m_sizeInBits != other->Size()) in XOR()
101 if ((m_sizeInBits >> 3) == m_array.size()) in AppendByte()
[all …]
DBC_QRCoderBitVector.h33 size_t m_sizeInBits = 0; variable