Searched refs:endIndex (Results 1 - 3 of 3) sorted by last modified time

/linux-master/lib/zstd/compress/
H A Dzstd_fast.c105 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); local
106 const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
406 const U32 endIndex = (U32)((size_t)(ip - base) + srcSize); local
407 assert(endIndex - prefixStartIndex <= maxDistance);
408 (void)maxDistance; (void)endIndex; /* these variables are not used when assert() is disabled */
562 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); local
563 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
H A Dzstd_double_fast.c63 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); local
65 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
271 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); local
273 const U32 prefixLowestIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
296 assert(ms->window.dictLimit + (1U << cParams->windowLog) >= endIndex);
546 const U32 endIndex = (U32)((size_t)(istart - base) + srcSize); local
547 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
/linux-master/lib/lz4/
H A Dlz4hc_compress.c753 U32 const endIndex = (U32)(streamPtr->end - streamPtr->base); local
756 streamPtr->base = streamPtr->end - endIndex;
757 streamPtr->dictLimit = endIndex - dictSize;
758 streamPtr->lowLimit = endIndex - dictSize;

Completed in 189 milliseconds