Lines Matching refs:pIn
196 const BYTE *pIn, in LZ4_count() argument
200 const BYTE *const pStart = pIn; in LZ4_count()
202 while (likely(pIn < pInLimit - (STEPSIZE - 1))) { in LZ4_count()
203 size_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn); in LZ4_count()
206 pIn += STEPSIZE; in LZ4_count()
211 pIn += LZ4_NbCommonBytes(diff); in LZ4_count()
213 return (unsigned int)(pIn - pStart); in LZ4_count()
217 if ((pIn < (pInLimit - 3)) in LZ4_count()
218 && (LZ4_read32(pMatch) == LZ4_read32(pIn))) { in LZ4_count()
219 pIn += 4; in LZ4_count()
224 if ((pIn < (pInLimit - 1)) in LZ4_count()
225 && (LZ4_read16(pMatch) == LZ4_read16(pIn))) { in LZ4_count()
226 pIn += 2; in LZ4_count()
230 if ((pIn < pInLimit) && (*pMatch == *pIn)) in LZ4_count()
231 pIn++; in LZ4_count()
233 return (unsigned int)(pIn - pStart); in LZ4_count()