Home
last modified time | relevance | path

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

/lvgl-latest/src/libs/thorvg/
DtvgCompressor.cpp324 …ary& dict, int code, uint8_t*& output, int outputSizeBytes, int& bytesDecodedSoFar, int& firstByte) in outputSequence() argument
336 firstByte = sequence[--i]; in outputSequence()
349 int firstByte = 0; in lzwDecode() local
367 firstByte = code; in lzwDecode()
372 …(!outputSequence(dictionary, prevCode, ptr, uncompressedSizeBytes, bytesDecoded, firstByte)) break; in lzwDecode()
373 if (!outputByte(firstByte, ptr, uncompressedSizeBytes, bytesDecoded)) break; in lzwDecode()
374 … if (!outputSequence(dictionary, code, ptr, uncompressedSizeBytes, bytesDecoded, firstByte)) break; in lzwDecode()
376 dictionary.add(prevCode, firstByte); in lzwDecode()