Lines Matching refs:iend
383 const BYTE* const ip, const BYTE* const iend, in ZSTD_insertBt1() argument
419 assert(ip <= iend-8); /* required for h calculation */ in ZSTD_insertBt1()
452 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertBt1()
455 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertBt1()
466 if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ in ZSTD_insertBt1()
497 const BYTE* const ip, const BYTE* const iend, in ZSTD_updateTree_internal() argument
507 U32 const forward = ZSTD_insertBt1(ms, base+idx, iend, mls, dictMode == ZSTD_extDict); in ZSTD_updateTree_internal()
512 assert((size_t)(iend - base) <= (size_t)(U32)(-1)); in ZSTD_updateTree_internal()
516 void ZSTD_updateTree(ZSTD_matchState_t* ms, const BYTE* ip, const BYTE* iend) { in ZSTD_updateTree() argument
517 ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); in ZSTD_updateTree()
954 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic() local
955 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic()
971 ZSTD_opt_getNextMatchAndUpdateSeqStore(&optLdm, (U32)(ip-istart), (U32)(iend-ip)); in ZSTD_compressBlock_opt_generic()
987 …U32 nbMatches = ZSTD_BtGetAllMatches(matches, ms, &nextToUpdate3, ip, iend, dictMode, rep, ll0, mi… in ZSTD_compressBlock_opt_generic()
989 (U32)(ip-istart), (U32)(iend - ip)); in ZSTD_compressBlock_opt_generic()
1102 …U32 nbMatches = ZSTD_BtGetAllMatches(matches, ms, &nextToUpdate3, inr, iend, dictMode, opt[cur].re… in ZSTD_compressBlock_opt_generic()
1106 (U32)(inr-istart), (U32)(iend-inr)); in ZSTD_compressBlock_opt_generic()
1212 assert(anchor + llen <= iend); in ZSTD_compressBlock_opt_generic()
1214 ZSTD_storeSeq(seqStore, llen, anchor, iend, offCode, mlen-MINMATCH); in ZSTD_compressBlock_opt_generic()
1223 return (size_t)(iend - anchor); in ZSTD_compressBlock_opt_generic()