pInLimit          185 lib/lz4/lz4defs.h 	const BYTE *pInLimit)
pInLimit          189 lib/lz4/lz4defs.h 	while (likely(pIn < pInLimit - (STEPSIZE - 1))) {
pInLimit          204 lib/lz4/lz4defs.h 	if ((pIn < (pInLimit - 3))
pInLimit          211 lib/lz4/lz4defs.h 	if ((pIn < (pInLimit - 1))
pInLimit          217 lib/lz4/lz4defs.h 	if ((pIn < pInLimit) && (*pMatch == *pIn))
pInLimit          907 lib/zstd/compress.c static size_t ZSTD_count(const BYTE *pIn, const BYTE *pMatch, const BYTE *const pInLimit)
pInLimit          910 lib/zstd/compress.c 	const BYTE *const pInLoopLimit = pInLimit - (sizeof(size_t) - 1);
pInLimit          923 lib/zstd/compress.c 		if ((pIn < (pInLimit - 3)) && (ZSTD_read32(pMatch) == ZSTD_read32(pIn))) {
pInLimit          927 lib/zstd/compress.c 	if ((pIn < (pInLimit - 1)) && (ZSTD_read16(pMatch) == ZSTD_read16(pIn))) {
pInLimit          931 lib/zstd/compress.c 	if ((pIn < pInLimit) && (*pMatch == *pIn))