Home
last modified time | relevance | path

Searched refs:Z_RLE (Results 1 – 8 of 8) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c1485 if ((s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) ||
1486 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) {
1490 if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1492 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
1594 if (s->strategy != Z_HUFFMAN_ONLY && s->strategy != Z_RLE) {
1596 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
Dzlib.h191 #define Z_RLE 3 macro
Dgzio.c144 strategy = Z_RLE;
DChangeLog302 - Add Z_RLE strategy for run-length encoding [Truta]
303 - When Z_RLE requested, restrict matches to distance one
304 - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dgzlib.c161 state->strategy = Z_RLE;
Dzlib.h194 #define Z_RLE 3 macro
DChangeLog174 - Avoid searching past window for Z_RLE strategy
460 - Add deflate_rle() for faster Z_RLE strategy run-length encoding
919 - Add Z_RLE strategy for run-length encoding [Truta]
920 - When Z_RLE requested, restrict matches to distance one
921 - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE
Ddeflate.c904 (s->strategy == Z_RLE ? deflate_rle(s, flush) :