Home
last modified time | relevance | path

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

/lz4-3.4.0-2.7.6/lib/
Dlz4.c603 unsigned LZ4_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* pInLimit) in LZ4_count() argument
607 if (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
615 while (likely(pIn < pInLimit-(STEPSIZE-1))) { in LZ4_count()
622 …if ((STEPSIZE==8) && (pIn<(pInLimit-3)) && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { pIn+=4; pMat… in LZ4_count()
623 if ((pIn<(pInLimit-1)) && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { pIn+=2; pMatch+=2; } in LZ4_count()
624 if ((pIn<pInLimit) && (*pMatch == *pIn)) pIn++; in LZ4_count()