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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_fast.c 488 const U32 dictStartIndex = dms->window.dictLimit;
490 const BYTE* const dictStart = dictBase + dictStartIndex;
563 if (dictMatchIndex > dictStartIndex &&
707 const U32 dictStartIndex = lowLimit;
708 const BYTE* const dictStart = dictBase + dictStartIndex;
744 if (prefixStartIndex == dictStartIndex)
748 U32 const maxRep = curr - dictStartIndex;
806 U32 const mval = idx >= dictStartIndex ?
834 U32 const mval = idx >= dictStartIndex ?
zstd_double_fast.c 342 const U32 dictStartIndex = dms->window.dictLimit;
344 const BYTE* const dictStart = dictBase + dictStartIndex;
620 const U32 dictStartIndex = lowLimit;
625 const BYTE* const dictStart = dictBase + dictStartIndex;
632 if (prefixStartIndex == dictStartIndex)
655 & (offset_1 <= curr+1 - dictStartIndex)) /* note: we are searching at curr+1 */
662 if ((matchLongIndex > dictStartIndex) && (MEM_read64(matchLong) == MEM_read64(ip))) {
673 } else if ((matchIndex > dictStartIndex) && (MEM_read32(match) == MEM_read32(ip))) {
680 if ( (matchIndex3 > dictStartIndex) && (MEM_read64(match3) == MEM_read64(ip+1)) ) {
723 & (offset_2 <= current2 - dictStartIndex))
    [all...]

Completed in 16 milliseconds