Home
last modified time | relevance | path

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

/external/pdfium/xfa/fxbarcode/qrcode/
DBC_QRCoderBitVector.cpp77 int32_t numBitsLeft = numBits; in AppendBits() local
78 while (numBitsLeft > 0) { in AppendBits()
79 if ((m_sizeInBits & 0x7) == 0 && numBitsLeft >= 8) { in AppendBits()
80 int32_t newByte = (value >> (numBitsLeft - 8)) & 0xff; in AppendBits()
82 numBitsLeft -= 8; in AppendBits()
84 int32_t bit = (value >> (numBitsLeft - 1)) & 1; in AppendBits()
88 --numBitsLeft; in AppendBits()