Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_compress.c48 …u16 lastOffset; // Offset to 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()
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() local
398 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()