matchLongIndex   1424 lib/zstd/compress.c 		const U32 matchLongIndex = hashLong[hLong];
matchLongIndex   1425 lib/zstd/compress.c 		const BYTE *matchLongBase = matchLongIndex < dictLimit ? dictBase : base;
matchLongIndex   1426 lib/zstd/compress.c 		const BYTE *matchLong = matchLongBase + matchLongIndex;
matchLongIndex   1442 lib/zstd/compress.c 			if ((matchLongIndex > lowestIndex) && (ZSTD_read64(matchLong) == ZSTD_read64(ip))) {
matchLongIndex   1443 lib/zstd/compress.c 				const BYTE *matchEnd = matchLongIndex < dictLimit ? dictEnd : iend;
matchLongIndex   1444 lib/zstd/compress.c 				const BYTE *lowMatchPtr = matchLongIndex < dictLimit ? dictStart : lowPrefixPtr;
matchLongIndex   1447 lib/zstd/compress.c 				offset = curr - matchLongIndex;