Lines Matching refs:lastLength

49 …u32     lastLength;                // Length of matching data (the longest matching data at the ti…  in MI_CompressLZImpl()  local
79 if ((lastLength = SearchLZ(srcStartp, srcp, size, &lastOffset, MAX_LENGTH)) != 0) in MI_CompressLZImpl()
92 if ( lastLength >= 0xFF + 0xF + 3 ) in MI_CompressLZImpl()
94 length = (u32)( lastLength - 0xFF - 0xF - 3 ); in MI_CompressLZImpl()
99 else if ( lastLength >= 0xF + 2 ) in MI_CompressLZImpl()
101 length = (u32)( lastLength - 0xF - 2 ); in MI_CompressLZImpl()
107 length = (u32)( lastLength - 1 ); in MI_CompressLZImpl()
112 length = (u32)( lastLength - 3 ); in MI_CompressLZImpl()
119 srcp += lastLength; in MI_CompressLZImpl()
120 size -= lastLength; in MI_CompressLZImpl()
367 …u32 lastLength; // Length of matching data (the longest matching data at the ti… in MI_CompressLZFastImpl() local
398 if ( (lastLength = SearchLZFast(&info, srcp, size, &lastOffset, MAX_LENGTH)) != 0 ) in MI_CompressLZFastImpl()
411 if ( lastLength >= 0xFF + 0xF + 3 ) in MI_CompressLZFastImpl()
413 length = (u32)( lastLength - 0xFF - 0xF - 3 ); in MI_CompressLZFastImpl()
418 else if ( lastLength >= 0xF + 2 ) in MI_CompressLZFastImpl()
420 length = (u32)( lastLength - 0xF - 2 ); in MI_CompressLZFastImpl()
426 length = (u32)( lastLength - 1 ); in MI_CompressLZFastImpl()
431 length = (u32)( lastLength - 3 ); in MI_CompressLZFastImpl()
438 LZSlide(&info, srcp, lastLength); in MI_CompressLZFastImpl()
439 srcp += lastLength; in MI_CompressLZFastImpl()
440 size -= lastLength; in MI_CompressLZFastImpl()