Searched refs:MZ_BUF_ERROR (Results 1 – 3 of 3) sorted by relevance
| /hal_espressif-latest/components/esp_rom/include/ |
| D | miniz.h | 129 …NO = -1, MZ_STREAM_ERROR = -2, MZ_DATA_ERROR = -3, MZ_MEM_ERROR = -4, MZ_BUF_ERROR = -5, MZ_VERSIO… enumerator 279 #define Z_BUF_ERROR MZ_BUF_ERROR
|
| /hal_espressif-latest/tools/esptool_py/flasher_stub/include/ |
| D | miniz.h | 275 MZ_BUF_ERROR = -5, enumerator 429 #define Z_BUF_ERROR MZ_BUF_ERROR
|
| /hal_espressif-latest/tools/esptool_py/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()
|