Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp71 …u32 lastLength; // Length of matching data (the longest matching data at the ti… in CompressLZImpl() local
115 if ( (lastLength = SearchLZ( &info, srcp, size, &lastOffset, MAX_LENGTH)) != 0 ) in CompressLZImpl()
128 if ( lastLength >= 0xFF + 0xF + 3 ) in CompressLZImpl()
130 length = (u32)( lastLength - 0xFF - 0xF - 3 ); in CompressLZImpl()
135 else if ( lastLength >= 0xF + 2 ) in CompressLZImpl()
137 length = (u32)( lastLength - 0xF - 2 ); in CompressLZImpl()
143 length = (u32)( lastLength - 1 ); in CompressLZImpl()
148 length = (u32)( lastLength - 3 ); in CompressLZImpl()
155 LZSlide(&info, srcp, lastLength); in CompressLZImpl()
156 srcp += lastLength; in CompressLZImpl()
[all …]