Home
last modified time | relevance | path

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

/DragonOS-0.1.5/kernel/src/libs/
Dlz4.c1269 U32 matchIndex = LZ4_getIndexOnHash(h, cctx->hashTable, tableType); in LZ4_compress_generic_validated() local
1270 assert(matchIndex <= current); in LZ4_compress_generic_validated()
1282 if (matchIndex < startIndex) in LZ4_compress_generic_validated()
1286 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1287 match = dictBase + matchIndex; in LZ4_compress_generic_validated()
1288matchIndex += dictDelta; /* make dictCtx index comparable with current context */ in LZ4_compress_generic_validated()
1293 match = base + matchIndex; in LZ4_compress_generic_validated()
1299 if (matchIndex < startIndex) in LZ4_compress_generic_validated()
1301 … DEBUGLOG(7, "extDict candidate: matchIndex=%5u < startIndex=%5u", matchIndex, startIndex); in LZ4_compress_generic_validated()
1302 assert(startIndex - matchIndex >= MINMATCH); in LZ4_compress_generic_validated()
[all …]