Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c89 …u8 lastLength; // Length of matching data (the longest matching data at the ti… in CXCompressLZ() local
120 if ((lastLength = SearchLZ( &info, srcp, size, &lastOffset)) != 0 ) in CXCompressLZ()
130 *dstp++ = (u8)((lastLength - 3) << 4 | (lastOffset - 1) >> 8); in CXCompressLZ()
133 LZSlide(&info, srcp, lastLength); in CXCompressLZ()
134 srcp += lastLength; in CXCompressLZ()
135 size -= lastLength; in CXCompressLZ()