Home | History | Annotate | Download | only in fuzz

Lines Matching refs:matchLength

94             FUZZ_ASSERT(generatedSequences[i].matchLength == 0);
105 { size_t matchLength = generatedSequences[i].matchLength;
111 size_t matchInDict = MIN(matchLength, dictOffset);
115 matchLength -= matchInDict;
119 for (; j < matchLength; ++j) {
123 FUZZ_ASSERT(generatedSequences[i].matchLength == j + k);
124 bytesWritten += generatedSequences[i].matchLength;
165 uint32_t matchLength;
190 matchLength = FUZZ_dataProducer_uint32Range(producer, ZSTD_MINMATCH_MIN, matchBound);
191 bytesGenerated += matchLength;
195 { ZSTD_Sequence seq = {offset, litLength, matchLength, repCode};
201 const size_t seqSize = seq.litLength + seq.matchLength;
241 size_t mlen = seqs[n].matchLength;