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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 479 const U32 prefixStartIndex = ms->window.dictLimit;
488 const U32 dictStartIndex = dms->window.dictLimit;
709 const U32 dictLimit = ms->window.dictLimit;
710 const U32 prefixStartIndex = dictLimit < lowLimit ? lowLimit : dictLimit;
zstd_ldm.c 337 U32 const dictLimit = ldmState->window.dictLimit;
338 U32 const lowestIndex = extDict ? ldmState->window.lowLimit : dictLimit;
342 BYTE const* const dictEnd = extDict ? dictBase + dictLimit : NULL;
343 BYTE const* const lowPrefixPtr = base + dictLimit;
417 cur->offset < dictLimit ? dictBase : base;
420 cur->offset < dictLimit ? dictEnd : iend;
422 cur->offset < dictLimit ? dictStart : lowPrefixPtr;
zstd_double_fast.c 342 const U32 dictStartIndex = dms->window.dictLimit;
354 assert(ms->window.dictLimit + (1U << cParams->windowLog) >= endIndex);
621 const U32 dictLimit = ms->window.dictLimit;
622 const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit;
zstd_opt.c 459 const U32 dictLimit = ms->window.dictLimit;
460 const BYTE* const dictEnd = dictBase + dictLimit;
461 const BYTE* const prefixStart = base + dictLimit;
515 if (!extDict || (matchIndex+matchLength >= dictLimit)) {
516 assert(matchIndex+matchLength >= dictLimit); /* might be wrong if actually extDict */
522 if (matchIndex+matchLength >= dictLimit)
615 U32 const dictLimit = ms->window.dictLimit;
616 const BYTE* const dictEnd = dictBase + dictLimit;
    [all...]
zstd_lazy.c 46 DEBUGLOG(7, "ZSTD_updateDUBT, from %u to %u (dictLimit:%u)",
47 idx, target, ms->window.dictLimit);
51 assert(idx >= ms->window.dictLimit); /* condition for valid base+idx */
86 const U32 dictLimit = ms->window.dictLimit;
87 const BYTE* const ip = (curr>=dictLimit) ? base + curr : dictBase + curr;
88 const BYTE* const iend = (curr>=dictLimit) ? inputEnd : dictBase + dictLimit;
89 const BYTE* const dictEnd = dictBase + dictLimit;
90 const BYTE* const prefixStart = base + dictLimit;
    [all...]
zstd_compress_internal.h 203 U32 dictLimit; /* below that point, need extDict */
941 window->dictLimit = end;
946 return window.dictLimit == ZSTD_WINDOW_START_INDEX &&
957 return window.lowLimit < window.dictLimit;
1106 if (window->dictLimit < correction + ZSTD_WINDOW_START_INDEX) {
1107 window->dictLimit = ZSTD_WINDOW_START_INDEX;
1109 window->dictLimit -= correction;
1115 /* Ensure that lowLimit and dictLimit didn't underflow. */
1117 assert(window->dictLimit <= newCurrent);
1144 * In normal dict mode, the dictionary lies between lowLimit and dictLimit
    [all...]
  /src/external/bsd/zstd/dist/tests/
fuzzer.c 3183 BYTE* dictLimit = dictPtr + dictSize - 12;
3185 while (dictPtr < dictLimit &&
3190 if (dictPtr >= dictLimit) goto _output_error;

Completed in 37 milliseconds