Lines Matching refs:iend

445                 const BYTE* const ip, const BYTE* const iend,  in ZSTD_insertBt1()  argument
486 assert(ip <= iend-8); /* required for h calculation */ in ZSTD_insertBt1()
519 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertBt1()
522 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertBt1()
533 if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ in ZSTD_insertBt1()
565 const BYTE* const ip, const BYTE* const iend, in ZSTD_updateTree_internal() argument
575 … U32 const forward = ZSTD_insertBt1(ms, base+idx, iend, target, mls, dictMode == ZSTD_extDict); in ZSTD_updateTree_internal()
580 assert((size_t)(iend - base) <= (size_t)(U32)(-1)); in ZSTD_updateTree_internal()
584 void ZSTD_updateTree(ZSTD_MatchState_t* ms, const BYTE* ip, const BYTE* iend) { in ZSTD_updateTree() argument
585 ZSTD_updateTree_internal(ms, ip, iend, ms->cParams.minMatch, ZSTD_noDict); in ZSTD_updateTree()
1089 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic() local
1090 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic()
1110 ZSTD_opt_getNextMatchAndUpdateSeqStore(&optLdm, (U32)(ip-istart), (U32)(iend-ip)); in ZSTD_compressBlock_opt_generic()
1126 … U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, ip, iend, rep, ll0, minMatch); in ZSTD_compressBlock_opt_generic()
1128 (U32)(ip-istart), (U32)(iend-ip), in ZSTD_compressBlock_opt_generic()
1223 && LIKELY(ip + cur < iend) in ZSTD_compressBlock_opt_generic()
1279 …U32 nbMatches = getAllMatches(matches, ms, &nextToUpdate3, inr, iend, opt[cur].rep, ll0, minMatch); in ZSTD_compressBlock_opt_generic()
1283 (U32)(inr-istart), (U32)(iend-inr), in ZSTD_compressBlock_opt_generic()
1297 || (ip + cur + longestML >= iend) ) { in ZSTD_compressBlock_opt_generic()
1428 assert(anchor + llen <= iend); in ZSTD_compressBlock_opt_generic()
1430 ZSTD_storeSeq(seqStore, llen, anchor, iend, offBase, mlen); in ZSTD_compressBlock_opt_generic()
1442 return (size_t)(iend - anchor); in ZSTD_compressBlock_opt_generic()