Lines Matching refs:outbuf
63 Byte *outbuf; /* output buffer */
116 s->stream.next_out = s->outbuf = Z_NULL;
160 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
162 if (err != Z_OK || s->outbuf == Z_NULL) {
247 s->stream.next_out = s->outbuf;
248 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
385 TRYFREE(s->outbuf);
576 s->stream.next_out = s->outbuf;
577 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
722 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
726 s->stream.next_out = s->outbuf;
834 if (offset != 0 && s->outbuf == Z_NULL) {
835 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
836 if (s->outbuf == Z_NULL) return -1L;
848 size = gzread(file, s->outbuf, (uInt)size);