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