Lines Matching full:as

6   This software is provided 'as-is', without any express or implied
18 2. Altered source versions must be plainly marked as such, and must not be
19 misrepresented as being the original software.
65 This library can optionally read and write gzip streams in memory as well.
135 The opaque value provided by the application will be passed as the first
244 deflate compresses as much data as possible, and stops when the input
249 The detailed semantics are as follows. deflate performs one or both of the
283 If flush is set to Z_FULL_FLUSH, all output is flushed as with
307 Z_STREAM_END, then it must be called again as described above.
365 inflate decompresses as much data as possible, and stops when the input
370 The detailed semantics are as follows. inflate performs one or both of the
379 accordingly. inflate() provides as much output as possible, until there
393 Z_FINISH, or Z_BLOCK. Z_SYNC_FLUSH requests that inflate() flush as much
394 output as possible to the output buffer. Z_BLOCK requests that inflate() stop
424 In this implementation, inflate() always flushes as much output as
427 is on the return value of inflate(), as noted below, or when it returns early
434 total_out bytes) and returns Z_OK, Z_STREAM_END or an error code as described
515 usage as a function of windowBits and memLevel.
525 Z_DEFAULT and Z_HUFFMAN_ONLY. Z_RLE is designed to be almost as fast as
533 memory, Z_STREAM_ERROR if a parameter is invalid (such as an invalid
571 parameter is invalid (such as NULL dictionary) or the stream state is
580 Sets the destination stream as a complete copy of the source stream.
591 (such as zalloc being NULL). msg is left unchanged in both source and
603 stream state was inconsistent (such as zalloc or state being NULL).
611 interpretation of level and strategy is as in deflateInit2. This can be
618 Before the call of deflateParams, the stream state must be set as for
659 bits leftover from a previous deflate stream when appending to it. As such,
707 size is given as input, inflate() will return with the error code
715 such as zip. Those formats provide their own check values. If a custom
717 recommended that a check value such as an adler32 or a crc32 be applied to
718 the uncompressed data as is done in the zlib, gzip, and zip formats. For
719 most applications, the zlib format should be used as is. Note that comments
729 memory, Z_STREAM_ERROR if a parameter is invalid (such as a null strm). msg
751 parameter is invalid (such as NULL dictionary) or the stream state is
776 Sets the destination stream as a complete copy of the source stream.
785 (such as zalloc being NULL). msg is left unchanged in both source and
796 stream state was inconsistent (such as zalloc or state being NULL).
821 As inflate() processes the gzip stream, head->done is zero until the header
930 The in_desc and out_desc parameters of inflateBack() is passed as the
1029 parameter has the same meaning as in deflateInit. sourceLen is the byte
1071 is as in fopen ("rb" or "wb") but can also include a compression level
1072 ("wb9") or a strategy: 'f' for filtered data as in "wb6f", 'h' for
1073 Huffman only compression as in "wb1h", or 'R' for run-length encoding
1074 as in "wb1R". (See the description of deflateInit2 for more information
1090 The mode parameter is as in gzopen.
1125 control of the format string, as in fprintf. gzprintf returns the number of
1176 flush is as in the deflate() function. The return value is the zlib
1188 uncompressed data stream. The whence parameter is defined as in lseek(2);
1195 gzseek returns the resulting offset location as measured in bytes from
1265 An Adler-32 checksum is almost as reliable as a CRC32 but can be computed