Home
last modified time | relevance | path

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

/TwlSDK-5.1.0/build/libraries/mi/common/src/
Dmi_compress.c49 …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()
[all …]