Home | History | Annotate | Download | only in zlib

Lines Matching defs:outbuf

62     Byte     *outbuf; /* output buffer */
119 s->stream.next_out = s->outbuf = Z_NULL;
163 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
165 if (err != Z_OK || s->outbuf == Z_NULL) {
250 s->stream.next_out = s->outbuf;
251 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
388 TRYFREE(s->outbuf);
579 s->stream.next_out = s->outbuf;
580 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
725 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
729 s->stream.next_out = s->outbuf;
837 if (offset != 0 && s->outbuf == Z_NULL) {
838 s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
839 if (s->outbuf == Z_NULL) return -1L;
851 size = gzread(file, s->outbuf, (uInt)size);