Home
last modified time | relevance | path

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

/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c105 …u32 lastLength; // Length of matching data (the longest matching data at the ti… in CXCompressLZImpl() local
149 if ( (lastLength = SearchLZ( &info, srcp, size, &lastOffset, MAX_LENGTH)) != 0 ) in CXCompressLZImpl()
162 if ( lastLength >= 0xFF + 0xF + 3 ) in CXCompressLZImpl()
164 length = (u32)( lastLength - 0xFF - 0xF - 3 ); in CXCompressLZImpl()
169 else if ( lastLength >= 0xF + 2 ) in CXCompressLZImpl()
171 length = (u32)( lastLength - 0xF - 2 ); in CXCompressLZImpl()
177 length = (u32)( lastLength - 1 ); in CXCompressLZImpl()
182 length = (u32)( lastLength - 3 ); in CXCompressLZImpl()
189 LZSlide(&info, srcp, lastLength); in CXCompressLZImpl()
190 srcp += lastLength; in CXCompressLZImpl()
[all …]