Lines Matching refs:anchor
1485 const BYTE* anchor = istart;
1572 ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */
1658 while ( ((start > anchor) & (start - STORED_OFFSET(offcode) > prefixLowest))
1666 while ((start>anchor) && (match>mStart) && (start[-1] == match[-1])) { start--; match--; matchLength++; } /* catch up */
1672 { size_t const litLength = (size_t)(start - anchor);
1673 ZSTD_storeSeq(seqStore, litLength, anchor, iend, (U32)offcode, matchLength);
1674 anchor = ip = start + matchLength;
1690 ZSTD_storeSeq(seqStore, 0, anchor, iend, STORE_REPCODE_1, matchLength);
1692 anchor = ip;
1705 ZSTD_storeSeq(seqStore, 0, anchor, iend, STORE_REPCODE_1, matchLength);
1707 anchor = ip;
1716 return (size_t)(iend - anchor);
1872 const BYTE* anchor = istart;
1932 ip += ((ip-anchor) >> kSearchStrength) + 1; /* jump faster over incompressible sections */
2008 while ((start>anchor) && (match>mStart) && (start[-1] == match[-1])) { start--; match--; matchLength++; } /* catch up */
2014 { size_t const litLength = (size_t)(start - anchor);
2015 ZSTD_storeSeq(seqStore, litLength, anchor, iend, (U32)offcode, matchLength);
2016 anchor = ip = start + matchLength;
2033 ZSTD_storeSeq(seqStore, 0, anchor, iend, STORE_REPCODE_1, matchLength);
2035 anchor = ip;
2046 return (size_t)(iend - anchor);