Searched refs:MZ_FINISH (Results 1 – 5 of 5) sorted by relevance
14 pub const MZ_FINISH: isize = MZFlush::Finish as isize; constant
362 pub use libz_sys::Z_FINISH as MZ_FINISH;426 pub use cloudflare_zlib_sys::Z_FINISH as MZ_FINISH;
82 Finish = ffi::MZ_FINISH as isize,110 Finish = ffi::MZ_FINISH as isize,
90 enum { MZ_NO_FLUSH = 0, MZ_PARTIAL_FLUSH = 1, MZ_SYNC_FLUSH = 2, MZ_FULL_FLUSH = 3, MZ_FINISH = 4, … enumerator232 #define Z_FINISH MZ_FINISH
299 …if ((!pStream) || (!pStream->state) || (flush < 0) || (flush > MZ_FINISH) || (!pStream->next_out))… in mz_deflate()305 return (flush == MZ_FINISH) ? MZ_STREAM_END : MZ_BUF_ERROR; in mz_deflate()332 else if ((!pStream->avail_in) && (flush != MZ_FINISH)) in mz_deflate()377 status = mz_deflate(&stream, MZ_FINISH); in mz_compress2()451 if ((flush) && (flush != MZ_SYNC_FLUSH) && (flush != MZ_FINISH)) return MZ_STREAM_ERROR; in mz_inflate()460 if (pState->m_has_flushed && (flush != MZ_FINISH)) return MZ_STREAM_ERROR; in mz_inflate()461 pState->m_has_flushed |= (flush == MZ_FINISH); in mz_inflate()463 if ((flush == MZ_FINISH) && (first_call)) in mz_inflate()484 if (flush != MZ_FINISH) decomp_flags |= TINFL_FLAG_HAS_MORE_INPUT; in mz_inflate()517 else if (flush == MZ_FINISH) in mz_inflate()[all …]