Lines Matching refs:lastLength
71 …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()
157 size -= lastLength; in CompressLZImpl()