Home
last modified time | relevance | path

Searched refs:match_length (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.c1869 if (s->match_length >= MIN_MATCH) {
1875 s->lookahead -= s->match_length;
1896 s->match_length = 0;
1964 s->match_length = MIN_MATCH-1;
2013 s->match_length = MIN_MATCH-1;
2084 s->match_length = 0;
2104 if (s->match_length >= MIN_MATCH) {
2109 s->lookahead -= s->match_length;
2110 s->strstart += s->match_length;
2111 s->match_length = 0;
[all …]
H A Ddeflate.h159 uInt match_length; /* length of best match */ member
/f-stack/freebsd/contrib/zstd/doc/educational_decoder/
H A Dzstd_decompress.c327 u32 match_length; member
379 size_t match_length, size_t total_output,
1150 seq.match_length = in decode_sequence()
1250 size_t const match_length = seq.match_length; in execute_sequences() local
1252 execute_match_copy(ctx, offset, match_length, total_output, out); in execute_sequences()
1254 total_output += match_length; in execute_sequences()
1333 size_t match_length, size_t total_output, in execute_match_copy() argument
1335 u8 *write_ptr = IO_get_write_ptr(out, match_length); in execute_match_copy()
1348 MIN(offset - total_output, match_length); in execute_match_copy()
1354 match_length -= dict_copy; in execute_match_copy()
[all …]
/f-stack/dpdk/drivers/regex/octeontx2/
H A Dotx2_regexdev_hw_access.h184 uint64_t match_length : 15; member
/f-stack/freebsd/contrib/zstd/doc/
H A Dzstd_compression_format.md879 Each sequence consists of a tuple of (`literals_length`, `offset_value`, `match_length`),
884 Then `match_length` bytes are copied from previous decoded data.