HomeSort by: relevance | last modified time | path
    Searched refs:Z_BUF_ERROR (Results 1 - 20 of 20) sorted by relevancy

  /src/common/dist/zlib/
uncompr.c 25 memory, Z_BUF_ERROR if there was not enough room in the output buffer, or
74 else if (stream.total_out && err == Z_BUF_ERROR)
80 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
gzread.c 47 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
168 gz_error(state, Z_BUF_ERROR, "unexpected end of file");
355 (state->err != Z_OK && state->err != Z_BUF_ERROR))
369 if (len == 0 && state->err != Z_OK && state->err != Z_BUF_ERROR)
388 (state->err != Z_OK && state->err != Z_BUF_ERROR))
419 (state->err != Z_OK && state->err != Z_BUF_ERROR))
452 (state->err != Z_OK && state->err != Z_BUF_ERROR))
512 (state->err != Z_OK && state->err != Z_BUF_ERROR))
596 err = state->err == Z_BUF_ERROR ? Z_BUF_ERROR : Z_OK
    [all...]
gzlib.c 328 (state->err != Z_OK && state->err != Z_BUF_ERROR))
352 if (state->err != Z_OK && state->err != Z_BUF_ERROR)
538 if (err != Z_OK && err != Z_BUF_ERROR)
infback.c 151 then return a Z_BUF_ERROR from inflateBack(). */
158 ret = Z_BUF_ERROR; \
203 Z_BUF_ERROR. */
211 ret = Z_BUF_ERROR; \
237 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
616 ret = Z_BUF_ERROR;
deflate.c 734 return Z_BUF_ERROR;
738 return Z_BUF_ERROR;
778 return Z_BUF_ERROR;
962 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
983 * returning Z_STREAM_END instead of Z_BUF_ERROR.
987 ERR_RETURN(strm, Z_BUF_ERROR);
992 ERR_RETURN(strm, Z_BUF_ERROR);
zlib.h 186 #define Z_BUF_ERROR (-5)
330 enough output space. If deflate returns with Z_OK or Z_BUF_ERROR, this
358 by the application), or Z_BUF_ERROR if no progress is possible (for example
359 avail_in or avail_out was zero). Note that Z_BUF_ERROR is not fatal, and
513 by the application), Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR
515 buffer when Z_FINISH is used. Note that Z_BUF_ERROR is not fatal, and
738 state was inconsistent or if a parameter was invalid, or Z_BUF_ERROR if
741 in the case of a Z_BUF_ERROR, the parameters are not changed. A return
742 value of Z_BUF_ERROR is not fatal, in which case deflateParams() can be
805 deflatePrime returns Z_OK if success, Z_BUF_ERROR if there was not enoug
    [all...]
inflate.c 589 will return Z_BUF_ERROR if it has not reached the end of the stream.
1271 ret = Z_BUF_ERROR;
1394 if (strm->avail_in == 0 && state->bits < 8) return Z_BUF_ERROR;
  /src/common/dist/zlib/examples/
gun.c 196 lunpipe() will return Z_OK on success, Z_BUF_ERROR for an unexpected end of
228 return Z_BUF_ERROR;
253 return Z_BUF_ERROR;
283 return Z_BUF_ERROR;
292 return Z_BUF_ERROR;
355 return Z_BUF_ERROR;
379 trailer CRC-32 check or length doesn't match, Z_BUF_ERROR if the input ends
399 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */
420 ret = Z_BUF_ERROR;
479 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF *
    [all...]
zran.c 215 // prematurely without a file read error, Z_BUF_ERROR is returned.
358 return ferror(in) ? Z_ERRNO : Z_BUF_ERROR;
420 return ferror(in) ? Z_ERRNO : Z_BUF_ERROR;
498 case Z_BUF_ERROR:
gznorm.c 21 // Z_OK, Z_STREAM_END, Z_BUF_ERROR, Z_DATA_ERROR,
153 if (ret != Z_OK && ret != Z_BUF_ERROR && ret != Z_STREAM_END)
  /src/common/dist/zlib/contrib/infback9/
infback9.c 119 then return a Z_BUF_ERROR from inflateBack(). */
126 ret = Z_BUF_ERROR; \
171 Z_BUF_ERROR. */
179 ret = Z_BUF_ERROR; \
205 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it
576 ret = Z_BUF_ERROR;
  /src/sys/opencrypto/
deflate.c 137 * -sys/net/zlib.c has a bug which makes that Z_BUF_ERROR is
140 else if (decomp && (error == Z_OK || error == Z_BUF_ERROR)
331 * -sys/net/zlib.c has a bug which makes that Z_BUF_ERROR is
334 else if (decomp && error == Z_BUF_ERROR
  /src/common/dist/zlib/test/
infcover.c 321 if (ret != Z_OK && ret != Z_BUF_ERROR && ret != Z_NEED_DICT)
333 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_BUF_ERROR);
495 assert(ret == Z_BUF_ERROR);
  /src/sys/net/
zlib.h 434 #define Z_BUF_ERROR (-5)
576 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
681 enough memory, Z_BUF_ERROR if no progress is possible or if there was not
830 stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
886 inflateSync returns Z_OK if a full flush point has been found, Z_BUF_ERROR
926 enough memory, Z_BUF_ERROR if there was not enough room in the output
940 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
957 enough memory, Z_BUF_ERROR if there was not enough room in the output
zlib.c 1061 if (strm->avail_out == 0) ERR_RETURN(strm, Z_BUF_ERROR);
1109 ERR_RETURN(strm, Z_BUF_ERROR);
1114 ERR_RETURN(strm, Z_BUF_ERROR);
3511 r2 = f == Z_FINISH ? Z_BUF_ERROR : Z_OK;
3512 r = Z_BUF_ERROR;
3704 return Z_BUF_ERROR;
4528 tables to decode that set of codes. Return Z_OK on success, Z_BUF_ERROR
4703 return Z_BUF_ERROR;
4714 /* Return Z_BUF_ERROR if we were given an incomplete table */
4715 return y != 0 && g != 1 ? Z_BUF_ERROR : Z_OK
    [all...]
  /src/common/dist/zlib/contrib/pascal/
zlibpas.pas 83 Z_BUF_ERROR = -5;
  /src/common/dist/zlib/contrib/ada/
zlib-thin.ads 80 Z_BUF_ERROR : constant := -5; -- zlib.h:139
  /src/common/dist/zlib/contrib/delphi/
ZLib.pas 180 Z_BUF_ERROR = (-5);
  /src/common/dist/zlib/os400/
zlib.inc 52 D Z_BUF_ERROR C -5
  /src/usr.bin/gzip/
gzip.c 957 /* Z_BUF_ERROR goes with Z_FINISH... */
958 case Z_BUF_ERROR:

Completed in 29 milliseconds