Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:next_out

115     s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
246 s->stream.next_out = s->outbuf;
401 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */
408 next_out = (Byte*)buf;
409 s->stream.next_out = (Bytef*)buf;
413 *next_out++ = s->back;
414 s->stream.next_out++;
432 zmemcpy(s->stream.next_out, s->stream.next_in, n);
433 next_out += n;
434 s->stream.next_out = next_out;
441 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
470 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
471 start = s->stream.next_out;
490 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
575 s->stream.next_out = s->outbuf;
725 s->stream.next_out = s->outbuf;