Lines Matching defs:state

96     struct internal_state FAR *state; /* not visible by applications */
98 alloc_func zalloc; /* used to allocate the internal state */
99 free_func zfree; /* used to free the internal state */
103 for deflate, or the decoding state for inflate */
230 Initializes the internal stream state for compression. The fields
314 Z_SYNC_FLUSH, and the compression state is reset so that decompression can
354 Z_FINISH), Z_STREAM_ERROR if the stream state was inconsistent (for example
355 if next_in or next_out was Z_NULL or the state was inadvertently written over
370 stream state was inconsistent, Z_DATA_ERROR if the stream was freed
380 Initializes the internal stream state for decompression. The fields
510 next_in or next_out was Z_NULL, or the state was inadvertently written over
527 inflateEnd returns Z_OK if success, or Z_STREAM_ERROR if the stream state
583 for the internal compression state. memLevel=1 uses minimum memory but is
649 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is
674 stream state is inconsistent.
686 compression state which can be quite large, so this strategy is slow and can
690 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
698 does not free and reallocate the internal compression state. The stream
703 stream state was inconsistent (such as zalloc or state being Z_NULL).
716 state was initialized or reset, then the input available so far is
736 state was inconsistent or if a parameter was invalid, or Z_BUF_ERROR if
788 stream state was inconsistent.
805 source stream state was inconsistent.
827 state by deflateReset().
830 stream state was inconsistent.
871 inflate() will return Z_STREAM_END at the end of the gzip member. The state
904 parameter is invalid (e.g. dictionary being Z_NULL) or the stream state is
923 stream state is inconsistent.
951 first pass through the stream can periodically record the inflate state,
956 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
964 but does not free and reallocate the internal decompression state. The
969 stream state was inconsistent (such as zalloc or state being Z_NULL).
982 stream state was inconsistent (such as zalloc or state being Z_NULL), or if
1004 stream state was inconsistent.
1032 source stream state was inconsistent.
1072 stream state was inconsistent.
1079 Initialize the internal stream state for decompression using inflateBack()
1092 the parameters are invalid, Z_MEM_ERROR if the internal state could not be
1113 inflateBackInit() must be called first to allocate the internal state
1114 and to initialize the state with the user-provided window buffer.
1117 allocated state.
1176 state was inconsistent.
1339 insufficient memory to allocate the gzFile state, or if an invalid mode was
1362 gzFile state, if an invalid mode was specified (an 'r', 'w', or 'a' was not
1421 then nothing is read, -1 is returned, and the error state is set to
1439 is read, zero is returned, and the error state is set to Z_STREAM_ERROR.
1468 is returned, and the error state is set to Z_STREAM_ERROR.
1637 deallocate the (de)compression state. Note that once file is closed, you
1831 * that the real internal state is much larger than the exposed structure.