Lines Matching refs:pIn
178 const BYTE *pIn, in LZ4_count() argument
182 const BYTE *const pStart = pIn; in LZ4_count()
184 while (likely(pIn < pInLimit - (STEPSIZE - 1))) { in LZ4_count()
185 size_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
188 pIn += STEPSIZE; in LZ4_count()
193 pIn += LZ4_NbCommonBytes(diff); in LZ4_count()
195 return (unsigned int)(pIn - pStart); in LZ4_count()
199 if ((pIn < (pInLimit - 3)) in LZ4_count()
200 && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { in LZ4_count()
201 pIn += 4; in LZ4_count()
206 if ((pIn < (pInLimit - 1)) in LZ4_count()
207 && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { in LZ4_count()
208 pIn += 2; in LZ4_count()
212 if ((pIn < pInLimit) && (*pMatch == *pIn)) in LZ4_count()
213 pIn++; in LZ4_count()
215 return (unsigned int)(pIn - pStart); in LZ4_count()