Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp100 int nextBitPos; //Bit position within the current byte to access next. 0 to 7. member
109 nextBitPos = 0; in internalInit()
163 const uint32_t mask = uint32_t(1) << nextBitPos; in appendBit()
167 if (++nextBitPos == 8) { in appendBit()
168 nextBitPos = 0; in appendBit()
210 int nextBitPos = 0; // Bit position within the current byte to access next. 0 to 7. member
221 const uint32_t mask = uint32_t(1) << nextBitPos; in readNextBit()
225 if (++nextBitPos == 8) { in readNextBit()
226 nextBitPos = 0; in readNextBit()