Lines Matching defs:pIn
194 const BYTE *pIn,
198 const BYTE *const pStart = pIn;
200 while (likely(pIn < pInLimit - (STEPSIZE - 1))) {
201 size_t const diff = LZ4_read_ARCH(pMatch) ^ LZ4_read_ARCH(pIn);
204 pIn += STEPSIZE;
209 pIn += LZ4_NbCommonBytes(diff);
211 return (unsigned int)(pIn - pStart);
215 if ((pIn < (pInLimit - 3))
216 && (LZ4_read32(pMatch) == LZ4_read32(pIn))) {
217 pIn += 4;
222 if ((pIn < (pInLimit - 1))
223 && (LZ4_read16(pMatch) == LZ4_read16(pIn))) {
224 pIn += 2;
228 if ((pIn < pInLimit) && (*pMatch == *pIn))
229 pIn++;
231 return (unsigned int)(pIn - pStart);