Searched refs:Z_BLOCK (Results 1 – 23 of 23) sorted by relevance
/external/zlib/src/examples/ |
D | README.examples | 22 - 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
|
D | zran.c | 195 ret = inflate(&strm, Z_BLOCK); /* return at end of block */ in build_index()
|
D | gzjoin.c | 329 ret = inflate(&strm, Z_BLOCK); in gzcopy()
|
D | gzappend.c | 310 ret = inflate(strm, Z_BLOCK); in gzscan()
|
/external/zlib/src/contrib/pascal/ |
D | zlibpas.pas | 73 Z_BLOCK = 5;
|
/external/curl/lib/ |
D | content_encoding.c | 193 #ifdef Z_BLOCK in inflate_stream() 195 status = inflate(z, Z_BLOCK); in inflate_stream()
|
/external/u-boot/include/u-boot/ |
D | zlib.h | 470 #define Z_BLOCK 5 macro
|
/external/python/cpython3/Modules/ |
D | zlibmodule.c | 1385 #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/ |
D | deflate.c | 437 err = deflate(strm, Z_BLOCK); 590 flush > Z_BLOCK || flush < 0) { 841 } else if (flush != Z_BLOCK) { /* FULL_FLUSH or SYNC_FLUSH */
|
D | inflate.c | 547 if (flush == Z_BLOCK) goto inf_leave; in inflate()
|
/external/python/cpython2/Modules/zlib/ |
D | zlib.h | 173 #define Z_BLOCK 5 macro
|
D | deflate.c | 592 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 */
|
D | gzwrite.c | 617 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
|
D | ChangeLog | 206 - 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
|
D | inflate.c | 850 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
|
/external/zlib/src/ |
D | zlib.h | 173 #define Z_BLOCK 5 macro
|
D | deflate.c | 592 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 */
|
D | gzwrite.c | 617 if (strm->avail_in && gz_comp(state, Z_BLOCK) == -1)
|
D | ChangeLog | 206 - 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
|
D | inflate.c | 850 if (flush == Z_BLOCK || flush == Z_TREES) goto inf_leave;
|
/external/zlib/ |
D | zlib.h | 173 #define Z_BLOCK 5 macro
|
/external/python/cpython3/Doc/library/ |
D | zlib.rst | 220 :const:`Z_FULL_FLUSH`, :const:`Z_BLOCK` (zlib 1.2.3.4), or :const:`Z_FINISH`,
|
/external/curl/ |
D | CHANGES | 7650 content_encoding: handle zlib versions too old for Z_BLOCK 7652 Fallback on Z_SYNC_FLUSH when Z_BLOCK is not available.
|