Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp97 int bytesAllocated; //Current size of heap-allocated stream buffer *in bytes*. member
106 bytesAllocated = 0; in internalInit()
155 if (sizeInBytes <= bytesAllocated) return; in allocate()
157 stream = allocBytes(sizeInBytes, stream, bytesAllocated); in allocate()
158 bytesAllocated = sizeInBytes; in allocate()
169 if (++currBytePos == bytesAllocated) allocate(bytesAllocated * granularity * 8); in appendBit()