Searched refs:lastOffset (Results 1 – 1 of 1) sorted by relevance
48 …u16 lastOffset; // Offset to matching data (the longest matching data at the ti… in MI_CompressLZImpl() local79 if ((lastLength = SearchLZ(srcStartp, srcp, size, &lastOffset, MAX_LENGTH)) != 0) in MI_CompressLZImpl()116 *dstp++ = (u8)( length << 4 | (lastOffset - 1) >> 8 ); in MI_CompressLZImpl()117 *dstp++ = (u8)((lastOffset - 1) & 0xff); in MI_CompressLZImpl()366 …u16 lastOffset; // Offset to matching data (the longest matching data at the ti… in MI_CompressLZFastImpl() local398 if ( (lastLength = SearchLZFast(&info, srcp, size, &lastOffset, MAX_LENGTH)) != 0 ) in MI_CompressLZFastImpl()435 *dstp++ = (u8)(length << 4 | (lastOffset - 1) >> 8); in MI_CompressLZFastImpl()436 *dstp++ = (u8)((lastOffset - 1) & 0xff); in MI_CompressLZFastImpl()