Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp99 int currBytePos; //Current byte being written to, from 0 to bytesAllocated-1. member
108 currBytePos = 0; in internalInit()
164 stream[currBytePos] = (stream[currBytePos] & ~mask) | (-bit & mask); in appendBit()
169 if (++currBytePos == bytesAllocated) allocate(bytesAllocated * granularity * 8); in appendBit()
209 int currBytePos = 0; // Current byte being read in the stream. member
222 bitOut = !!(stream[currBytePos] & mask); in readNextBit()
227 ++currBytePos; in readNextBit()