Searched refs:Z_NO_FLUSH (Results 1 – 16 of 16) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | example.c | 189 err = deflate(&c_stream, Z_NO_FLUSH); 229 err = inflate(&d_stream, Z_NO_FLUSH); 270 err = deflate(&c_stream, Z_NO_FLUSH); 281 err = deflate(&c_stream, Z_NO_FLUSH); 288 err = deflate(&c_stream, Z_NO_FLUSH); 325 err = inflate(&d_stream, Z_NO_FLUSH); 404 inflate(&d_stream, Z_NO_FLUSH); 486 err = inflate(&d_stream, Z_NO_FLUSH);
|
D | deflate.c | 384 s->last_flush = Z_NO_FLUSH; 787 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1413 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; 1463 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1570 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1666 Assert (flush != Z_NO_FLUSH, "no flush?"); 1700 if (s->lookahead < MAX_MATCH && flush == Z_NO_FLUSH) {
|
D | zlib.h | 162 #define Z_NO_FLUSH 0 macro
|
D | gzio.c | 464 s->z_err = inflate(&(s->stream), Z_NO_FLUSH); 584 s->z_err = deflate(&(s->stream), Z_NO_FLUSH);
|
D | ChangeLog | 92 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | gzwrite.c | 98 if (strm->avail_out == 0 || (flush != Z_NO_FLUSH && 142 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 157 if (gz_comp(state, Z_NO_FLUSH) == -1) 223 if (len && gz_comp(state, Z_NO_FLUSH) == -1) 229 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) 236 if (gz_comp(state, Z_NO_FLUSH) == -1) 338 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1) in gzvprintf() 423 if (strm->avail_in && gz_comp(state, Z_NO_FLUSH) == -1)
|
D | example.c | 220 err = deflate(&c_stream, Z_NO_FLUSH); 260 err = inflate(&d_stream, Z_NO_FLUSH); 301 err = deflate(&c_stream, Z_NO_FLUSH); 312 err = deflate(&c_stream, Z_NO_FLUSH); 319 err = deflate(&c_stream, Z_NO_FLUSH); 356 err = inflate(&d_stream, Z_NO_FLUSH); 435 inflate(&d_stream, Z_NO_FLUSH); 517 err = inflate(&d_stream, Z_NO_FLUSH);
|
D | deflate.c | 419 s->last_flush = Z_NO_FLUSH; 900 (flush != Z_NO_FLUSH && s->status != FINISH_STATE)) { 1587 if (s->lookahead == 0 && flush == Z_NO_FLUSH) return need_more; 1643 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1746 if (s->lookahead < MIN_LOOKAHEAD && flush == Z_NO_FLUSH) { 1839 Assert (flush != Z_NO_FLUSH, "no flush?"); 1876 if (s->lookahead <= MAX_MATCH && flush == Z_NO_FLUSH) { 1945 if (flush == Z_NO_FLUSH)
|
D | minigzip.c | 252 (void)deflate(strm, Z_NO_FLUSH); 283 ret = inflate(strm, Z_NO_FLUSH);
|
D | zlib.h | 164 #define Z_NO_FLUSH 0 macro
|
D | gzread.c | 191 ret = inflate(strm, Z_NO_FLUSH);
|
D | ChangeLog | 709 - Add comment in zlib.h for Z_NO_FLUSH parameter to deflate()
|
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/ |
D | ZLib.c | 78 ret = inflate(&stream, Z_NO_FLUSH); in GzipDecompress()
|
D | zlib.h | 168 #define Z_NO_FLUSH 0 macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zlibmodule.c | 429 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress() 443 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress() 610 if (flushmode == Z_NO_FLUSH) { in PyZlib_flush() 1045 PyModule_AddIntConstant(m, "Z_NO_FLUSH", Z_NO_FLUSH); in PyInit_zlib()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zlibmodule.c | 435 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress() 449 err = deflate(&(self->zst), Z_NO_FLUSH); in PyZlib_objcompress() 636 if (flushmode == Z_NO_FLUSH) { in PyZlib_flush() 1080 PyModule_AddIntConstant(m, "Z_NO_FLUSH", Z_NO_FLUSH); in PyInit_zlib()
|