Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c88 …u16 lastOffset; // Offset to matching data (the longest matching data at the ti… in CXCompressLZ() local
120 if ((lastLength = SearchLZ( &info, srcp, size, &lastOffset)) != 0 ) in CXCompressLZ()
130 *dstp++ = (u8)((lastLength - 3) << 4 | (lastOffset - 1) >> 8); in CXCompressLZ()
131 *dstp++ = (u8)((lastOffset - 1) & 0xff); in CXCompressLZ()