Home
last modified time | relevance | path

Searched refs:Z_BLOCK (Results 1 – 23 of 23) sorted by relevance

/external/zlib/src/examples/
DREADME.examples22 - illustrates the use of the Z_BLOCK flush parameter for inflate()
27 - illustrates the use of the Z_BLOCK flush parameter for inflate()
48 - illustrates the use of Z_BLOCK, inflatePrime(), and
Dzran.c195 ret = inflate(&strm, Z_BLOCK); /* return at end of block */ in build_index()
Dgzjoin.c329 ret = inflate(&strm, Z_BLOCK); in gzcopy()
Dgzappend.c310 ret = inflate(strm, Z_BLOCK); in gzscan()
/external/zlib/src/contrib/pascal/
Dzlibpas.pas73 Z_BLOCK = 5;
/external/curl/lib/
Dcontent_encoding.c193 #ifdef Z_BLOCK in inflate_stream()
195 status = inflate(z, Z_BLOCK); in inflate_stream()
/external/u-boot/include/u-boot/
Dzlib.h470 #define Z_BLOCK 5 macro
/external/python/cpython3/Modules/
Dzlibmodule.c1385 #ifdef Z_BLOCK // 1.2.0.5 for inflate, 1.2.3.4 for deflate in PyInit_zlib()
1386 PyModule_AddIntMacro(m, Z_BLOCK); in PyInit_zlib()
/external/u-boot/lib/zlib/
Ddeflate.c437 err = deflate(strm, Z_BLOCK);
590 flush > Z_BLOCK || flush < 0) {
841 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
Dinflate.c547 if (flush == Z_BLOCK) goto inf_leave; in inflate()
/external/python/cpython2/Modules/zlib/
Dzlib.h173 #define Z_BLOCK 5 macro
Ddeflate.c592 int err = deflate(strm, Z_BLOCK);
770 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
1024 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
Dgzwrite.c617 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
DChangeLog206 - Permit stronger flushes after Z_BLOCK flushes
211 - Write out all of the available bits when using Z_BLOCK
572 - Allow Z_BLOCK for deflate() to force a new block
809 - Correct Z_BLOCK to not return on first inflate call if no wrap
850 - Add Z_BLOCK flush option to return from inflate at block boundary
Dinflate.c850 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
/external/zlib/src/
Dzlib.h173 #define Z_BLOCK 5 macro
Ddeflate.c592 int err = deflate(strm, Z_BLOCK);
770 if (deflateStateCheck(strm) || flush > Z_BLOCK || flush < 0) {
1024 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
Dgzwrite.c617 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
DChangeLog206 - Permit stronger flushes after Z_BLOCK flushes
211 - Write out all of the available bits when using Z_BLOCK
572 - Allow Z_BLOCK for deflate() to force a new block
809 - Correct Z_BLOCK to not return on first inflate call if no wrap
850 - Add Z_BLOCK flush option to return from inflate at block boundary
Dinflate.c850 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
/external/zlib/
Dzlib.h173 #define Z_BLOCK 5 macro
/external/python/cpython3/Doc/library/
Dzlib.rst220 :const:`Z_FULL_FLUSH`, :const:`Z_BLOCK` (zlib 1.2.3.4), or :const:`Z_FINISH`,
/external/curl/
DCHANGES7650 content_encoding: handle zlib versions too old for Z_BLOCK
7652 Fallback on Z_SYNC_FLUSH when Z_BLOCK is not available.