Searched refs:Z_RLE (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.1-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.c1179 * Optimized version for level == 1 or strategy == Z_RLE only
1312 /* %%% avoid this when Z_RLE */
1491 if ((s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) ||
1492 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) {
1496 if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1498 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
1600 if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1602 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
1685 * For Z_RLE, simply look for runs of bytes, generate matches only of distance
1687 * deflate switches away from Z_RLE
[all...]
H A Dzlib.h193 #define Z_RLE 3 macro
522 string match), or Z_RLE to limit match distances to one (run-length
527 Z_DEFAULT and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as fast as
/freebsd-10.1-release/lib/libz/
H A Dgzlib.c164 state->strategy = Z_RLE;
H A Dzlib.h194 #define Z_RLE 3 macro
567 string match), or Z_RLE to limit match distances to one (run-length
572 Z_DEFAULT_STRATEGY and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as
H A Ddeflate.c904 (s->strategy == Z_RLE ? deflate_rle(s, flush) :
1857 * For Z_RLE, simply look for runs of bytes, generate matches only of distance
1859 * deflate switches away from Z_RLE.)

Completed in 128 milliseconds