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

  /src/external/bsd/zstd/dist/contrib/externalSequenceProducer/
sequence_producer.c 52 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
53 if (matchLen >= ZSTD_MINMATCH_MIN) {
57 offset, litLen, matchLen, 0
63 ip += matchLen;
sequence_producer.c 52 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
53 if (matchLen >= ZSTD_MINMATCH_MIN) {
57 offset, litLen, matchLen, 0
63 ip += matchLen;
  /src/external/bsd/zstd/dist/tests/
external_matchfinder.c 53 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
54 if (matchLen >= ZSTD_MINMATCH_MIN) {
58 offset, litLen, matchLen, 0
64 ip += matchLen;
external_matchfinder.c 53 U32 const matchLen = (U32)ZSTD_count(ip, match, iend);
54 if (matchLen >= ZSTD_MINMATCH_MIN) {
58 offset, litLen, matchLen, 0
64 ip += matchLen;
decodecorpus.c 700 U32 matchLen =
714 matchLen = (U32) MIN(matchLen, excessMatch + MIN_SEQ_LEN);
717 if (i + 1 == numSequences) matchLen = MIN_SEQ_LEN + (U32) excessMatch;
736 /* when offset > windowSize, matchLen bound by end of dictionary (lenPastStart) */
743 matchLen = MIN(matchLen, matchLenBound);
767 for (j = 0; j < matchLen; j++) {
787 (unsigned)literalLen, (unsigned)offset, (unsigned)matchLen);
796 offBase, matchLen);
    [all...]
decodecorpus.c 700 U32 matchLen =
714 matchLen = (U32) MIN(matchLen, excessMatch + MIN_SEQ_LEN);
717 if (i + 1 == numSequences) matchLen = MIN_SEQ_LEN + (U32) excessMatch;
736 /* when offset > windowSize, matchLen bound by end of dictionary (lenPastStart) */
743 matchLen = MIN(matchLen, matchLenBound);
767 for (j = 0; j < matchLen; j++) {
787 (unsigned)literalLen, (unsigned)offset, (unsigned)matchLen);
796 offBase, matchLen);
    [all...]

Completed in 75 milliseconds