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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 161 const U32 prefixStartIndex = ZSTD_getLowestPrefixIndex(ms, endIndex, cParams->windowLog);
162 const BYTE* const prefixStart = base + prefixStartIndex;
250 if (idx >= prefixStartIndex) {
285 if (idx >= prefixStartIndex) {
479 const U32 prefixStartIndex = ms->window.dictLimit;
480 const BYTE* const prefixStart = base + prefixStartIndex;
492 const U32 dictIndexDelta = prefixStartIndex - (U32)(dictEnd - dictBase);
500 assert(endIndex - prefixStartIndex <= maxDistance);
507 assert(prefixStartIndex >= (U32)(dictEnd - dictBase));
542 const BYTE* repMatch = (repIndex < prefixStartIndex)
    [all...]
zstd_double_fast.c 622 const U32 prefixStartIndex = (dictLimit > lowLimit) ? dictLimit : lowLimit;
623 const BYTE* const prefixStart = base + prefixStartIndex;
626 const BYTE* const dictEnd = dictBase + prefixStartIndex;
632 if (prefixStartIndex == dictStartIndex)
639 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base;
644 const BYTE* const matchLongBase = matchLongIndex < prefixStartIndex ? dictBase : base;
649 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base;
654 if ((((U32)((prefixStartIndex-1) - repIndex) >= 3) /* intentional underflow : ensure repIndex doesn't overlap dict + prefix */
657 const BYTE* repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend;
663 const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend
    [all...]

Completed in 26 milliseconds