Home
last modified time | relevance | path

Searched refs:MZ_FINISH (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/esp_rom/include/
Dminiz.h126 enum { MZ_NO_FLUSH = 0, MZ_PARTIAL_FLUSH = 1, MZ_SYNC_FLUSH = 2, MZ_FULL_FLUSH = 3, MZ_FINISH = 4, … enumerator
270 #define Z_FINISH MZ_FINISH
/hal_espressif-latest/tools/esptool_py/flasher_stub/include/
Dminiz.h261 MZ_FINISH = 4, enumerator
420 #define Z_FINISH MZ_FINISH
/hal_espressif-latest/tools/esptool_py/flasher_stub/
Dminiz.c239 … if ((!pStream) || (!pStream->state) || (flush < 0) || (flush > MZ_FINISH) || (!pStream->next_out)) in mz_deflate()
248 return (flush == MZ_FINISH) ? MZ_STREAM_END : MZ_BUF_ERROR; in mz_deflate()
280 else if ((!pStream->avail_in) && (flush != MZ_FINISH)) in mz_deflate()
329 status = mz_deflate(&stream, MZ_FINISH); in mz_compress2()
437 if ((flush) && (flush != MZ_SYNC_FLUSH) && (flush != MZ_FINISH)) in mz_inflate()
450 if (pState->m_has_flushed && (flush != MZ_FINISH)) in mz_inflate()
452 pState->m_has_flushed |= (flush == MZ_FINISH); in mz_inflate()
454 if ((flush == MZ_FINISH) && (first_call)) in mz_inflate()
480 if (flush != MZ_FINISH) in mz_inflate()
522 else if (flush == MZ_FINISH) in mz_inflate()
[all …]