Home | History | Annotate | Download | only in linux

Lines Matching full:more

44       this checks there is no more input data available and the next data
62 application must provide more input and/or consume the output
63 (providing more output space) before each call.
122 exactly 65536 bytes, but will not be required to allocate more than this
222 - Compress more input starting at next_in and update next_in and avail_in
227 - Provide more output starting at next_out and update next_out and avail_out
234 one of the actions is possible, by providing more input and/or consuming
235 more output, and updating avail_in or avail_out accordingly; avail_out
240 output buffer because there might be more output pending.
256 with the same value of the flush parameter and more output space (updated
263 called again with Z_FINISH and more output space (updated avail_out) but no
264 more input data, until it returns with Z_STREAM_END or an error. After
281 deflate() returns Z_OK if some progress has been made (more input
282 processed or more output produced), Z_STREAM_END if all input has been
342 - Decompress more input starting at next_in and update next_in and avail_in
347 - Provide more output starting at next_out and update next_out and avail_out
349 is no more input data or no more space in the output buffer (see below
353 one of the actions is possible, by providing more input and/or consuming
354 more output, and updating the next_* and avail_* values accordingly.
359 might be more
415 inflate() returns Z_OK if some progress has been made (more input processed
416 or more output produced), Z_STREAM_END if the end of the compressed data has
424 inflate() can be called again with more input and more output space to
456 This is another version of deflateInit with more compression options. The
480 tuned to compress them better. The effect of Z_FILTERED is to force more
660 if no more input was provided, Z_DATA_ERROR if no flush point has been found,
664 application may repeatedly call inflateSync, providing more input each time,