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

  /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/
sequence_producer.c 52 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
  /src/external/bsd/zstd/dist/tests/
external_matchfinder.c 53 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
  /src/external/bsd/zstd/dist/lib/compress/
zstd_double_fast.c 191 mLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4;
207 mLength = ZSTD_count(ip+8, matchl0+8, iend) + 8;
256 mLength = ZSTD_count(ip+4, matchs0+4, iend) + 4;
261 size_t const l1len = ZSTD_count(ip1+8, matchl1+8, iend) + 8;
312 size_t const rLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4;
418 mLength = ZSTD_count(ip+8, matchLong+8, iend) + 8;
467 mLength = ZSTD_count(ip+9, matchL3+8, iend) + 8;
491 mLength = ZSTD_count(ip+4, match+4, iend) + 4;
zstd_compress_internal.h 854 MEM_STATIC size_t ZSTD_count(const BYTE* pIn, const BYTE* pMatch, const BYTE* const pInLimit)
884 size_t const matchLength = ZSTD_count(ip, match, vEnd);
890 DEBUGLOG(7, "final match length = %zu", matchLength + ZSTD_count(ip+matchLength, iStart, iEnd));
891 return matchLength + ZSTD_count(ip+matchLength, iStart, iEnd);
zstd_fast.c 11 #include "zstd_compress_internal.h" /* ZSTD_hashPtr, ZSTD_count, ZSTD_storeSeq */
396 mLength += ZSTD_count(ip0 + mLength, match0 + mLength, iend);
413 size_t const rLength = ZSTD_count(ip0+4, ip0+4-rep_offset2, iend) + 4;
603 mLength = ZSTD_count(ip0 + 4, match + 4, iend) + 4;
zstd_opt.c 518 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend);
658 repLen = (U32)ZSTD_count(ip+minMatch, ip+minMatch-repOffset, iLimit) + minMatch;
698 mlen = ZSTD_count(ip, match, iLimit);
734 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iLimit);
zstd_lazy.c 104 assert(ip < iend); /* condition for ZSTD_count */
123 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend);
331 matchLength += ZSTD_count(ip+matchLength, match+matchLength, iend);
715 currentMl = ZSTD_count(ip, match, iLimit);
1265 currentMl = ZSTD_count(ip, match, iLimit);
1602 matchLength = ZSTD_count(ip+1+4, ip+1+4-offset_1, iend) + 4;
1634 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4;
1670 size_t const mlRep = ZSTD_count(ip+4, ip+4-offset_1, iend) + 4;
1761 matchLength = ZSTD_count(ip+4, ip+4-offset_2, iend) + 4;
zstd_ldm.c 447 curForwardMatchLength = ZSTD_count(split, pMatch, iend);
zstd_compress.c 3582 if (prefixLength && ZSTD_count(ip+1, ip, ip+prefixLength) != prefixLength-1) {

Completed in 29 milliseconds