Home
last modified time | relevance | path

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

/external/zlib/src/contrib/delphi/
Dreadme.txt25 - The new Z_RLE strategy has its corresponding symbolic constant.
DZLib.pas190 Z_RLE = 3;
/external/zlib/src/contrib/pascal/
Dzlibpas.pas93 Z_RLE = 3;
/external/squashfs-tools/squashfs-tools/
Dgzip_wrapper.c37 { "run_length_encoded", Z_RLE, 0 },
/external/u-boot/include/u-boot/
Dzlib.h494 #define Z_RLE 3 macro
/external/python/cpython3/Modules/
Dzlibmodule.c1372 #ifdef Z_RLE // 1.2.0.1 in PyInit_zlib()
1373 PyModule_AddIntMacro(m, Z_RLE); in PyInit_zlib()
/external/libpng/contrib/tools/
Dpngcp.c193 { "RLE", Z_RLE },
1285 if (dp->value[istrat] == Z_RLE || dp->value[istrat] == Z_HUFFMAN_ONLY) in getsearchopts()
1302 else if (dp->value[istrat] == Z_RLE) in getsearchopts()
/external/zlib/src/
Dgzlib.c161 state->strategy = Z_RLE;
Dzlib.h198 #define Z_RLE 3 macro
DChangeLog32 - Fix bug when level 0 used with Z_HUFFMAN or Z_RLE
217 - Avoid searching past window for Z_RLE strategy
503 - Add deflate_rle() for faster Z_RLE strategy run-length encoding
962 - Add Z_RLE strategy for run-length encoding [Truta]
963 - When Z_RLE requested, restrict matches to distance one
964 - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE
Ddeflate.c1002 s->strategy == Z_RLE ? deflate_rle(s, flush) :
/external/python/cpython2/Modules/zlib/
Dgzlib.c161 state->strategy = Z_RLE;
Dzlib.h198 #define Z_RLE 3 macro
DChangeLog32 - Fix bug when level 0 used with Z_HUFFMAN or Z_RLE
217 - Avoid searching past window for Z_RLE strategy
503 - Add deflate_rle() for faster Z_RLE strategy run-length encoding
962 - Add Z_RLE strategy for run-length encoding [Truta]
963 - When Z_RLE requested, restrict matches to distance one
964 - Update zlib.h, minigzip.c, gzopen(), gzdopen() for Z_RLE
Ddeflate.c1002 s->strategy == Z_RLE ? deflate_rle(s, flush) :
/external/zlib/
Dzlib.h198 #define Z_RLE 3 macro
/external/python/cpython3/Doc/library/
Dzlib.rst103 :const:`Z_RLE` (zlib 1.2.0.1) and :const:`Z_FIXED` (zlib 1.2.2.2).
/external/libpng/scripts/
Dpnglibconf.dfa273 # TODO: why aren't these Z_RLE; zlib.h says that Z_RLE, specifically, is
/external/u-boot/lib/zlib/
Ddeflate.c819 (s->strategy == Z_RLE ? deflate_rle(s, flush) :
/external/ImageMagick/coders/
Dpng.c10831 #ifdef Z_RLE /* Z_RLE was added to zlib-1.2.0 */ in WriteOnePNGImage()
10832 mng_info->write_png_compression_strategy=Z_RLE+1; in WriteOnePNGImage()
12459 #ifdef Z_RLE /* Z_RLE was added to zlib-1.2.0 */ in WritePNGImage()
12460 mng_info->write_png_compression_strategy = Z_RLE+1; in WritePNGImage()