Lines Matching defs:iend

25     const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE;
31 for ( ; ip + fastHashFillStep < iend + 2; ip += fastHashFillStep) {
108 const BYTE* const iend = istart + srcSize;
109 const BYTE* const ilimit = iend - HASH_READ_SIZE;
262 return (size_t)(iend - anchor);
283 mLength += ZSTD_count(ip0 + mLength, match0 + mLength, iend);
285 ZSTD_storeSeq(seqStore, (size_t)(ip0 - anchor), anchor, iend, offcode, mLength);
299 hashTable[ZSTD_hashPtr(base+current0+2, hlog, mls)] = current0+2; /* here because current+2 could be > iend-8 */
305 size_t const rLength = ZSTD_count(ip0+4, ip0+4-rep_offset2, iend) + 4;
309 ZSTD_storeSeq(seqStore, 0 /*litLen*/, anchor, iend, STORE_REPCODE_1, rLength);
387 const BYTE* const iend = istart + srcSize;
388 const BYTE* const ilimit = iend - HASH_READ_SIZE;
439 const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
440 mLength = ZSTD_count_2segments(ip+1+4, repMatch+4, iend, repMatchEnd, prefixStart) + 4;
442 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_REPCODE_1, mLength);
455 mLength = ZSTD_count_2segments(ip+4, dictMatch+4, iend, dictEnd, prefixStart) + 4;
462 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength);
472 mLength = ZSTD_count(ip+4, match+4, iend) + 4;
477 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength);
487 hashTable[ZSTD_hashPtr(base+curr+2, hlog, mls)] = curr+2; /* here because curr+2 could be > iend-8 */
499 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
500 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
502 ZSTD_storeSeq(seqStore, 0, anchor, iend, STORE_REPCODE_1, repLength2);
518 return (size_t)(iend - anchor);
570 const BYTE* const iend = istart + srcSize;
571 const BYTE* const ilimit = iend - 8;
598 const BYTE* const repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
599 size_t const rLength = ZSTD_count_2segments(ip+1 +4, repMatch +4, iend, repMatchEnd, prefixStart) + 4;
601 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_REPCODE_1, rLength);
611 { const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend;
614 size_t mLength = ZSTD_count_2segments(ip+4, match+4, iend, matchEnd, prefixStart) + 4;
617 ZSTD_storeSeq(seqStore, (size_t)(ip-anchor), anchor, iend, STORE_OFFSET(offset), mLength);
633 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
634 size_t const repLength2 = ZSTD_count_2segments(ip+4, repMatch2+4, iend, repEnd2, prefixStart) + 4;
636 ZSTD_storeSeq(seqStore, 0 /*litlen*/, anchor, iend, STORE_REPCODE_1, repLength2);
650 return (size_t)(iend - anchor);