Lines Matching defs:strm
74 z_streamp strm; /* pointer back to this zlib stream */
416 * to avoid allocating a large strm->next_out buffer and copying into it.
420 z_streamp strm
423 deflate_state *s = (deflate_state *) strm->state;
426 if (len > strm->avail_out) len = strm->avail_out;
429 if (strm->next_out != NULL) {
430 memcpy(strm->next_out, s->pending_out, len);
431 strm->next_out += len;
434 strm->total_out += len;
435 strm->avail_out -= len;