Searched refs:lastLength (Results 1 – 1 of 1) sorted by relevance
89 …u8 lastLength; // Length of matching data (the longest matching data at the ti… in CXCompressLZ() local120 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()