Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp345 …pressed, uint32_t compressedSizeBytes, uint32_t compressedSizeBits, uint32_t uncompressedSizeBytes) in lzwDecode() argument
352 auto uncompressed = (uint8_t*) malloc(sizeof(uint8_t) * uncompressedSizeBytes); in lzwDecode()
366 if (!outputByte(code, ptr, uncompressedSizeBytes, bytesDecoded)) break; in lzwDecode()
372 …if (!outputSequence(dictionary, prevCode, ptr, uncompressedSizeBytes, bytesDecoded, firstByte)) br… in lzwDecode()
373 if (!outputByte(firstByte, ptr, uncompressedSizeBytes, bytesDecoded)) break; in lzwDecode()
374 …} else if (!outputSequence(dictionary, code, ptr, uncompressedSizeBytes, bytesDecoded, firstByte))… in lzwDecode()
385 uint8_t* lzwEncode(const uint8_t* uncompressed, uint32_t uncompressedSizeBytes, uint32_t* compresse… in lzwEncode() argument
395 for (; uncompressedSizeBytes > 0; --uncompressedSizeBytes, ++uncompressed) { in lzwEncode()
DtvgCompressor.h33 …uint8_t* lzwEncode(const uint8_t* uncompressed, uint32_t uncompressedSizeBytes, uint32_t* compress…
34 …ressed, uint32_t compressedSizeBytes, uint32_t compressedSizeBits, uint32_t uncompressedSizeBytes);