Lines Matching refs:anchor
208 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_noDict_generic() local
374 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_noDict_generic()
386 while (((ip0>anchor) & (match0>prefixStart)) && (ip0[-1] == match0[-1])) { in ZSTD_compressBlock_fast_noDict_generic()
397 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_noDict_generic()
400 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic()
416 ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, REPCODE1_TO_OFFBASE, rLength); in ZSTD_compressBlock_fast_noDict_generic()
417 anchor = ip0; in ZSTD_compressBlock_fast_noDict_generic()
495 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_dictMatchState_generic() local
571 … ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, REPCODE1_TO_OFFBASE, mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
585 while (((ip0 > anchor) & (dictMatch > dictStart)) in ZSTD_compressBlock_fast_dictMatchState_generic()
593 …ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
603 while (((ip0 > anchor) & (match > prefixStart)) in ZSTD_compressBlock_fast_dictMatchState_generic()
611 …ZSTD_storeSeq(seqStore, (size_t) (ip0 - anchor), anchor, iend, OFFSET_TO_OFFBASE(offset), mLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
635 anchor = ip0; in ZSTD_compressBlock_fast_dictMatchState_generic()
655 ZSTD_storeSeq(seqStore, 0, anchor, iend, REPCODE1_TO_OFFBASE, repLength2); in ZSTD_compressBlock_fast_dictMatchState_generic()
658 anchor = ip0; in ZSTD_compressBlock_fast_dictMatchState_generic()
666 assert(ip0 == anchor); in ZSTD_compressBlock_fast_dictMatchState_generic()
676 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_dictMatchState_generic()
720 const BYTE* anchor = istart; in ZSTD_compressBlock_fast_extDict_generic() local
897 return (size_t)(iend - anchor); in ZSTD_compressBlock_fast_extDict_generic()
912 while (((ip0>anchor) & (match0>lowMatchPtr)) && (ip0[-1] == match0[-1])) { in ZSTD_compressBlock_fast_extDict_generic()
924 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength); in ZSTD_compressBlock_fast_extDict_generic()
927 anchor = ip0; in ZSTD_compressBlock_fast_extDict_generic()
949 … ZSTD_storeSeq(seqStore, 0 /*litlen*/, anchor, iend, REPCODE1_TO_OFFBASE, repLength2); in ZSTD_compressBlock_fast_extDict_generic()
952 anchor = ip0; in ZSTD_compressBlock_fast_extDict_generic()