Searched refs:Z_BUF_ERROR (Results 1 - 8 of 8) sorted by relevance
/ast/src/lib/libz/ |
H A D | uncompr.c | 23 enough memory, Z_BUF_ERROR if there was not enough room in the output 38 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 42 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 53 if (err == Z_NEED_DICT || (err == Z_BUF_ERROR && stream.avail_in == 0))
|
H A D | compress.c | 19 memory, Z_BUF_ERROR if there was not enough room in the output buffer, 36 if ((uLong)stream.avail_in != sourceLen) return Z_BUF_ERROR; 40 if ((uLong)stream.avail_out != *destLen) return Z_BUF_ERROR; 52 return err == Z_OK ? Z_BUF_ERROR : err;
|
H A D | infback.c | 148 then return a Z_BUF_ERROR from inflateBack(). */ 155 ret = Z_BUF_ERROR; \ 200 Z_BUF_ERROR. */ 208 ret = Z_BUF_ERROR; \ 234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it 594 ret = Z_BUF_ERROR;
|
H A D | zlib.h | 177 #define Z_BUF_ERROR (-5) macro 321 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible 322 (for example avail_in or avail_out was zero). Note that Z_BUF_ERROR is not 453 Z_BUF_ERROR if no progress is possible or if there was not enough room in the 454 output buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and 623 stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR 764 inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR 937 return values of inflateBack() can be Z_STREAM_END on success, Z_BUF_ERROR 941 initialized. In the case of Z_BUF_ERROR, an input or output error can be 943 an error. If strm->next is not Z_NULL, then the Z_BUF_ERROR wa [all...] |
H A D | deflate.c | 570 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR); 772 * returning Z_STREAM_END instead of Z_BUF_ERROR. 776 ERR_RETURN(strm, Z_BUF_ERROR); 781 ERR_RETURN(strm, Z_BUF_ERROR);
|
H A D | inflate.c | 551 will return Z_BUF_ERROR if it has not reached the end of the stream. 1151 ret = Z_BUF_ERROR; 1273 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
|
H A D | gzio.c | 879 if (len == 0 && s->z_err == Z_BUF_ERROR) s->z_err = Z_OK;
|
/ast/src/cmd/INIT/ |
H A D | ratz.c | 545 #define Z_BUF_ERROR (-5) macro 2770 will return Z_BUF_ERROR if it has not reached the end of the stream. 3370 ret = Z_BUF_ERROR; 3494 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
|
Completed in 33 milliseconds