Lines Matching full:was
67 The zlib format was designed to be compact and fast for use in memory
68 and on communications channels. The gzip format was designed for single-
121 int hcrc; /* true if there was or will be a header crc */
233 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not
298 was enough output space; if deflate returns with Z_OK, this function must be
320 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
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
335 stream state was inconsistent, Z_DATA_ERROR if the stream was freed
336 prematurely (some input or output was discarded). In the error case,
354 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
449 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
451 value), Z_STREAM_ERROR if the stream structure was inconsistent (for example
452 if next_in or next_out was NULL), Z_MEM_ERROR if there was not enough memory,
453 Z_BUF_ERROR if no progress is possible or if there was not enough room in the
469 was inconsistent. In the error case, msg may be set but then points to a
532 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
567 actually used by the compressor.) If a raw deflate was requested, then the
589 deflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
590 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
603 stream state was inconsistent (such as zalloc or state being NULL).
623 stream state was inconsistent or if a parameter was invalid, Z_BUF_ERROR
624 if strm->avail_out was zero.
666 stream state was inconsistent.
690 stream state was inconsistent.
706 deflateInit2() was not used. If a compressed stream with a larger window
728 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
748 dictionary that was used for compression is provided.
765 if no more input was provided, Z_DATA_ERROR if no flush point has been found,
766 or Z_STREAM_ERROR if the stream structure was inconsistent. In the success
768 indicates where valid compressed data was found. In the error case, the
783 inflateCopy returns Z_OK if success, Z_MEM_ERROR if there was not
784 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
796 stream state was inconsistent (such as zalloc or state being NULL).
812 stream state was inconsistent.
830 was valid if done is set to one.) If extra is not Z_NULL, then extra_max
852 stream state was inconsistent.
865 assured that deflate was used with small window sizes, windowBits must be 15
936 pass back any unused input that was provided by the last in() call. The
938 if in() or out() returned an error, Z_DATA_ERROR if there was a format
940 nature of the error), or Z_STREAM_ERROR if the stream was not properly
943 an error. If strm->next is not Z_NULL, then the Z_BUF_ERROR was due to
954 state was inconsistent.
1019 compress returns Z_OK if success, Z_MEM_ERROR if there was not
1020 enough memory, Z_BUF_ERROR if there was not enough room in the output
1035 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
1036 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
1060 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
1061 enough memory, Z_BUF_ERROR if there was not enough room in the output
1062 buffer, or Z_DATA_ERROR if the input data was corrupted or incomplete.
1080 gzopen returns NULL if the file could not be opened or if there was
1094 gzdopen returns NULL if there was insufficient memory to allocate
1102 gzsetparams returns Z_OK if success, or Z_STREAM_ERROR if the file was not
1109 If the input file was not in gzip format, gzread copies the given number
1131 zlib was compiled with the insecure functions sprintf() or vsprintf()
1154 gzputc returns the value that was written, or -1 in case of error.