Home
last modified time | relevance | path

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

/external/zlib/src/contrib/pascal/
Dzlibpas.pas94 Z_FIXED = 4;
/external/squashfs-tools/squashfs-tools/
Dgzip_wrapper.c38 { "fixed", Z_FIXED, 0 },
/external/u-boot/include/u-boot/
Dzlib.h495 #define Z_FIXED 4 macro
/external/python/cpython3/Modules/
Dzlibmodule.c1375 #ifdef Z_FIXED // 1.2.2.2 in PyInit_zlib()
1376 PyModule_AddIntMacro(m, Z_FIXED); in PyInit_zlib()
/external/zlib/src/
Dgzlib.c164 state->strategy = Z_FIXED;
Dzlib.h199 #define Z_FIXED 4 macro
Ddeflate.c300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
584 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
Dtrees.c976 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
DChangeLog721 - Add Z_FIXED strategy option to deflateInit2() to force fixed trees
/external/python/cpython2/Modules/zlib/
Dgzlib.c164 state->strategy = Z_FIXED;
Dzlib.h199 #define Z_FIXED 4 macro
Ddeflate.c300 strategy < 0 || strategy > Z_FIXED || (windowBits == 8 && wrap != 1)) {
584 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
Dtrees.c976 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
DChangeLog721 - Add Z_FIXED strategy option to deflateInit2() to force fixed trees
/external/zlib/
Dzlib.h199 #define Z_FIXED 4 macro
/external/u-boot/lib/zlib/
Ddeflate.c261 strategy < 0 || strategy > Z_FIXED) {
429 if (level < 0 || level > 9 || strategy < 0 || strategy > Z_FIXED) {
Dtrees.c990 } else if (s->strategy == Z_FIXED || static_lenb == opt_lenb) {
/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/contrib/tools/
Dpngcp.c194 { "fixed", Z_FIXED }, /* the remainder do window searchs */
/external/ImageMagick/coders/
Dpng.c12466 #ifdef Z_FIXED /* Z_FIXED was added to zlib-1.2.2.2 */ in WritePNGImage()
12467 mng_info->write_png_compression_strategy = Z_FIXED+1; in WritePNGImage()