HomeSort by: relevance | last modified time | path
    Searched defs:lowLimit (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 706 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
707 const U32 dictStartIndex = lowLimit;
710 const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
zstd_double_fast.c 619 const U32 lowLimit = ZSTD_getLowestMatchIndex(ms, endIndex, cParams->windowLog);
620 const U32 dictStartIndex = lowLimit;
622 const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit;
zstd_lazy.c 96 U32 const windowValid = ms->window.lowLimit;
101 DEBUGLOG(8, "ZSTD_insertDUBT1(%u) (dictLimit=%u, lowLimit=%u)",
186 U32 const dictLowLimit = dms->window.lowLimit;
187 U32 const dictIndexDelta = ms->window.lowLimit - dictHighLimit;
684 const U32 lowestValid = ms->window.lowLimit;
687 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance;
708 for ( ; (matchIndex>=lowLimit) & (nbAttempts>0) ; nbAttempts--) {
1160 const U32 lowestValid = ms->window.lowLimit;
1163 const U32 lowLimit = isDictionary ? lowestValid : withinMaxDistance;
1234 if (matchIndex < lowLimit)
    [all...]
zstd_compress_internal.h 204 U32 lowLimit; /* below that point, no more valid data */
929 - ZSTD_CURRENT_MAX) /* Maximum beginning lowLimit */
940 window->lowLimit = end;
947 window.lowLimit == ZSTD_WINDOW_START_INDEX &&
957 return window.lowLimit < window.dictLimit;
1058 * lowLimit > (3<<29) ==> current > 3<<29 + 1<<windowLog
1072 * 3. (cctx->lowLimit + 1<<windowLog) < 1<<32:
1101 if (window->lowLimit < correction + ZSTD_WINDOW_START_INDEX) {
1102 window->lowLimit = ZSTD_WINDOW_START_INDEX;
1104 window->lowLimit -= correction
    [all...]

Completed in 32 milliseconds