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

  /src/external/bsd/zstd/dist/lib/compress/
zstd_double_fast.c 520 U32 const repIndex2 = current2 - offset_2;
521 const BYTE* repMatch2 = repIndex2 < prefixLowestIndex ?
522 dictBase + repIndex2 - dictIndexDelta :
523 base + repIndex2;
524 if ( (ZSTD_index_overlap_check(prefixLowestIndex, repIndex2))
526 const BYTE* const repEnd2 = repIndex2 < prefixLowestIndex ? dictEnd : iend;
728 U32 const repIndex2 = current2 - offset_2;
729 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
    [all...]
zstd_fast.c 647 U32 const repIndex2 = current2 - offset_2;
648 const BYTE* repMatch2 = repIndex2 < prefixStartIndex ?
649 dictBase - dictIndexDelta + repIndex2 :
650 base + repIndex2;
651 if ( (ZSTD_index_overlap_check(prefixStartIndex, repIndex2))
653 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend;
943 U32 const repIndex2 = (U32)(ip0-base) - offset_2;
944 const BYTE* const repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2;
    [all...]

Completed in 23 milliseconds