Lines Matching refs:anchor
946 const BYTE* anchor = (const BYTE*) source; in LZ4_compress_generic_validated() local
1091 …assert(ip > anchor); /* this is always true as ip has been advanced before entering the main loop … in LZ4_compress_generic_validated()
1093 …do { ip--; match--; } while (((ip > anchor) & (match > lowLimit)) && (unlikely(ip[-1] == match[-1]… in LZ4_compress_generic_validated()
1097 { unsigned const litLength = (unsigned)(ip - anchor); in LZ4_compress_generic_validated()
1117 LZ4_wildCopy8(op, anchor, op+litLength); in LZ4_compress_generic_validated()
1120 … (int)(anchor-(const BYTE*)source), litLength, (int)(ip-(const BYTE*)source)); in LZ4_compress_generic_validated()
1215 anchor = ip; in LZ4_compress_generic_validated()
1277 (int)(anchor-(const BYTE*)source), 0, (int)(ip-(const BYTE*)source)); in LZ4_compress_generic_validated()
1289 { size_t lastRun = (size_t)(iend - anchor); in LZ4_compress_generic_validated()
1311 LZ4_memcpy(op, anchor, lastRun); in LZ4_compress_generic_validated()
1312 ip = anchor + lastRun; in LZ4_compress_generic_validated()