Lines Matching refs:forwardIp
730 const BYTE* forwardIp = ip; in LZ4_compress_generic() local
735 ip = forwardIp; in LZ4_compress_generic()
736 forwardIp += step; in LZ4_compress_generic()
739 if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; in LZ4_compress_generic()
743 forwardH = LZ4_hashPosition(forwardIp, tableType); in LZ4_compress_generic()
751 const BYTE* forwardIp = ip; in LZ4_compress_generic() local
756 U32 const current = (U32)(forwardIp - base); in LZ4_compress_generic()
759 assert(forwardIp - base < (ptrdiff_t)(2 GB - 1)); in LZ4_compress_generic()
760 ip = forwardIp; in LZ4_compress_generic()
761 forwardIp += step; in LZ4_compress_generic()
764 if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; in LZ4_compress_generic()
792 forwardH = LZ4_hashPosition(forwardIp, tableType); in LZ4_compress_generic()