Lines Matching refs:pIn
183 const BYTE *pIn, in LZ4_count() argument
187 const BYTE *const pStart = pIn; in LZ4_count()
189 while (likely(pIn < pInLimit - (STEPSIZE - 1))) { in LZ4_count()
190 size_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
193 pIn += STEPSIZE; in LZ4_count()
198 pIn += LZ4_NbCommonBytes(diff); in LZ4_count()
200 return (unsigned int)(pIn - pStart); in LZ4_count()
204 if ((pIn < (pInLimit - 3)) in LZ4_count()
205 && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { in LZ4_count()
206 pIn += 4; in LZ4_count()
211 if ((pIn < (pInLimit - 1)) in LZ4_count()
212 && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { in LZ4_count()
213 pIn += 2; in LZ4_count()
217 if ((pIn < pInLimit) && (*pMatch == *pIn)) in LZ4_count()
218 pIn++; in LZ4_count()
220 return (unsigned int)(pIn - pStart); in LZ4_count()