Lines Matching refs:forwardIp
873 const BYTE* forwardIp = ip; in LZ4_compress_generic() local
878 ip = forwardIp; in LZ4_compress_generic()
879 forwardIp += step; in LZ4_compress_generic()
882 if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; in LZ4_compress_generic()
886 forwardH = LZ4_hashPosition(forwardIp, tableType); in LZ4_compress_generic()
894 const BYTE* forwardIp = ip; in LZ4_compress_generic() local
899 U32 const current = (U32)(forwardIp - base); in LZ4_compress_generic()
902 assert(forwardIp - base < (ptrdiff_t)(2 GB - 1)); in LZ4_compress_generic()
903 ip = forwardIp; in LZ4_compress_generic()
904 forwardIp += step; in LZ4_compress_generic()
907 if (unlikely(forwardIp > mflimitPlusOne)) goto _last_literals; in LZ4_compress_generic()
935 forwardH = LZ4_hashPosition(forwardIp, tableType); in LZ4_compress_generic()