Home
last modified time | relevance | path

Searched refs:MZ_SYNC_FLUSH (Results 1 – 5 of 5) sorted by relevance

/external/rust/crates/flate2/src/ffi/
Drust.rs12 pub const MZ_SYNC_FLUSH: isize = MZFlush::Sync as isize; constant
Dc.rs370 pub use libz_sys::Z_SYNC_FLUSH as MZ_SYNC_FLUSH;
434 pub use cloudflare_zlib_sys::Z_SYNC_FLUSH as MZ_SYNC_FLUSH;
/external/rust/crates/flate2/src/
Dmem.rs59 Sync = ffi::MZ_SYNC_FLUSH as isize,
104 Sync = ffi::MZ_SYNC_FLUSH as isize,
/external/OpenCL-CTS/test_common/miniz/
Dminiz.h90 enum { MZ_NO_FLUSH = 0, MZ_PARTIAL_FLUSH = 1, MZ_SYNC_FLUSH = 2, MZ_FULL_FLUSH = 3, MZ_FINISH = 4, … enumerator
230 #define Z_SYNC_FLUSH MZ_SYNC_FLUSH
Dminiz.c302 if (flush == MZ_PARTIAL_FLUSH) flush = MZ_SYNC_FLUSH; in mz_deflate()
450 if (flush == MZ_PARTIAL_FLUSH) flush = MZ_SYNC_FLUSH; in mz_inflate()
451 if ((flush) && (flush != MZ_SYNC_FLUSH) && (flush != MZ_FINISH)) return MZ_STREAM_ERROR; in mz_inflate()