Home
last modified time | relevance | path

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

/linux-4.19.296/lib/zstd/
Dzstd_opt.h264 U32 const matchIndex3 = ZSTD_insertAndFindFirstIndexHash3(zc, ip); in ZSTD_insertBtAndGetAllMatches() local
265 if (matchIndex3 > windowLow && (curr - matchIndex3 < (1 << 18))) { in ZSTD_insertBtAndGetAllMatches()
268 if ((!extDict) || matchIndex3 >= dictLimit) { in ZSTD_insertBtAndGetAllMatches()
269 match = base + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
273 match = dictBase + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
282 matches[mnum].off = ZSTD_REP_MOVE_OPT + curr - matchIndex3; in ZSTD_insertBtAndGetAllMatches()
Dcompress.c1310 U32 const matchIndex3 = hashLong[h3]; in ZSTD_compressBlock_doubleFast_generic() local
1311 const BYTE *match3 = base + matchIndex3; in ZSTD_compressBlock_doubleFast_generic()
1313 if ((matchIndex3 > lowestIndex) && (ZSTD_read64(match3) == ZSTD_read64(ip + 1))) { in ZSTD_compressBlock_doubleFast_generic()
1459 U32 const matchIndex3 = hashLong[h3]; in ZSTD_compressBlock_doubleFast_extDict_generic() local
1460 const BYTE *const match3Base = matchIndex3 < dictLimit ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
1461 const BYTE *match3 = match3Base + matchIndex3; in ZSTD_compressBlock_doubleFast_extDict_generic()
1464 if ((matchIndex3 > lowestIndex) && (ZSTD_read64(match3) == ZSTD_read64(ip + 1))) { in ZSTD_compressBlock_doubleFast_extDict_generic()
1465 const BYTE *matchEnd = matchIndex3 < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
1466 const BYTE *lowMatchPtr = matchIndex3 < dictLimit ? dictStart : lowPrefixPtr; in ZSTD_compressBlock_doubleFast_extDict_generic()
1469 offset = curr + 1 - matchIndex3; in ZSTD_compressBlock_doubleFast_extDict_generic()