Lines Matching refs:out
440 gets to the end of that block, or when it runs out of data.
753 fanatic optimizer trying to squeeze out the last compressed bit for their
784 await more bits to join them in order to fill out a full byte. If pending
1000 to clear out bits leftover after feeding inflate a block description prior
1103 out_func out, void FAR *out_desc);
1121 files and writes out uncompressed files. The utility would decode the
1129 routines until it reads a complete deflate stream and writes out all of the
1136 call out(out_desc, buf, len) to write the uncompressed data buf[0..len-1].
1137 out() should return zero on success, or non-zero on failure. If out()
1139 out() are permitted to change the contents of the window provided to
1140 inflateBackInit(), which is also the buffer that out() uses to write from.
1141 The length written by out() will be at most the window size. Any non-zero
1153 first parameter of in() and out() respectively when they are called. These
1155 supplied in() and out() functions need to do their job.
1160 if in() or out() returned an error, Z_DATA_ERROR if there was a format error
1165 strm->next_in is not Z_NULL, then the Z_BUF_ERROR was due to out() returning
1166 non-zero. (in() will always be called before out(), so strm->next_in is
1167 assured to be defined if out() returns non-zero.) Note that inflateBack()
1643 file operation error, Z_MEM_ERROR if out of memory, Z_BUF_ERROR if the