Searched refs:MZ_BUF_ERROR (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-3.4.0/components/esp_rom/include/esp32/rom/ |
D | miniz.h | 117 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 268 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32c3/rom/ |
D | miniz.h | 117 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 267 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32h2/rom/ |
D | miniz.h | 117 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 267 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32s2/rom/ |
D | miniz.h | 117 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 268 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esp_rom/include/esp32s3/rom/ |
D | miniz.h | 116 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 266 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esptool_py/esptool/flasher_stub/include/ |
D | miniz.h | 275 MZ_BUF_ERROR = -5, enumerator 429 #define Z_BUF_ERROR MZ_BUF_ERROR
|
/hal_espressif-3.4.0/components/esptool_py/esptool/flasher_stub/ |
D | miniz.c | 242 return MZ_BUF_ERROR; in mz_deflate() 248 return (flush == MZ_FINISH) ? MZ_STREAM_END : MZ_BUF_ERROR; in mz_deflate() 284 return MZ_BUF_ERROR; /* Can't make forward progress without some input. in mz_deflate() 333 return (status == MZ_OK) ? MZ_BUF_ERROR : status; in mz_compress2() 475 return MZ_BUF_ERROR; in mz_inflate() 521 …return MZ_BUF_ERROR; /* Signal caller that we can't make forward progress without supplying more i… in mz_inflate() 526 return pState->m_dict_avail ? MZ_BUF_ERROR : MZ_STREAM_END; in mz_inflate() 529 return MZ_BUF_ERROR; in mz_inflate() 573 return ((status == MZ_BUF_ERROR) && (!stream.avail_in)) ? MZ_DATA_ERROR : status; in mz_uncompress() 588 …{ MZ_DATA_ERROR, "data error" }, { MZ_MEM_ERROR, "out of memory" }, { MZ_BUF_ERROR, "buf error" },… in mz_error()
|