Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp70 …u16 lastOffset; // Offset to 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()
152 *dstp++ = (u8)( length << 4 | (lastOffset - 1) >> 8 ); in CompressLZImpl()
153 *dstp++ = (u8)( (lastOffset - 1) & 0xff); in CompressLZImpl()