Lines Matching refs:iend
273 const BYTE* const ip, const BYTE* const iend, in ZSTD_insertBt1() argument
308 assert(ip <= iend-8); /* required for h calculation */ in ZSTD_insertBt1()
340 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend); in ZSTD_insertBt1()
343 …matchLength += ZSTD_count_2segments(ip+matchLength, match+matchLength, iend, dictEnd, prefixStart); in ZSTD_insertBt1()
354 if (ip+matchLength == iend) { /* equal : no way to know if inf or sup */ in ZSTD_insertBt1()
383 const BYTE* const ip, const BYTE* const iend, in ZSTD_updateTree_internal() argument
393 idx += ZSTD_insertBt1(ms, cParams, base+idx, iend, mls, extDict); in ZSTD_updateTree_internal()
399 const BYTE* ip, const BYTE* iend) in ZSTD_updateTree() argument
401 ZSTD_updateTree_internal(ms, cParams, ip, iend, cParams->searchLength, 0 /*extDict*/); in ZSTD_updateTree()
676 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic() local
677 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic()
703 …U32 const nbMatches = ZSTD_BtGetAllMatches(ms, cParams, ip, iend, extDict, rep, ll0, matches, minM… in ZSTD_compressBlock_opt_generic()
789 …U32 const nbMatches = ZSTD_BtGetAllMatches(ms, cParams, inr, iend, extDict, opt[cur].rep, ll0, mat… in ZSTD_compressBlock_opt_generic()
892 return iend - anchor; in ZSTD_compressBlock_opt_generic()