Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp154 const int sizeInBytes = bitsWanted / 8; in allocate() local
155 if (sizeInBytes <= bytesAllocated) return; in allocate()
157 stream = allocBytes(sizeInBytes, stream, bytesAllocated); in allocate()
158 bytesAllocated = sizeInBytes; in allocate()
207 const int sizeInBytes; // Size of the stream *in bytes*. Might include padding. member
213 …tStream, const int byteCount, const int bitCount) : stream(bitStream), sizeInBytes(byteCount), siz… in BitStreamReader()