zstream            64 http/modules/ngx_http_gzip_filter_module.c     z_stream             zstream;
zstream           469 http/modules/ngx_http_gzip_filter_module.c         deflateEnd(&ctx->zstream);
zstream           604 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.zalloc = ngx_http_gzip_filter_alloc;
zstream           605 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.zfree = ngx_http_gzip_filter_free;
zstream           606 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.opaque = ctx;
zstream           608 http/modules/ngx_http_gzip_filter_module.c     rc = deflateInit2(&ctx->zstream, (int) conf->level, Z_DEFLATED,
zstream           660 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.avail_in || ctx->flush != Z_NO_FLUSH || ctx->redo) {
zstream           691 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.next_in = ctx->in_buf->pos;
zstream           692 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.avail_in = ctx->in_buf->last - ctx->in_buf->pos;
zstream           697 http/modules/ngx_http_gzip_filter_module.c                    ctx->zstream.next_in, ctx->zstream.avail_in);
zstream           706 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.avail_in) {
zstream           708 http/modules/ngx_http_gzip_filter_module.c         ctx->crc32 = crc32(ctx->crc32, ctx->zstream.next_in,
zstream           709 http/modules/ngx_http_gzip_filter_module.c                            ctx->zstream.avail_in);
zstream           724 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.avail_out) {
zstream           750 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.next_out = ctx->out_buf->pos;
zstream           751 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.avail_out = conf->bufs.size;
zstream           766 http/modules/ngx_http_gzip_filter_module.c                  ctx->zstream.next_in, ctx->zstream.next_out,
zstream           767 http/modules/ngx_http_gzip_filter_module.c                  ctx->zstream.avail_in, ctx->zstream.avail_out,
zstream           770 http/modules/ngx_http_gzip_filter_module.c     rc = deflate(&ctx->zstream, ctx->flush);
zstream           780 http/modules/ngx_http_gzip_filter_module.c                    ctx->zstream.next_in, ctx->zstream.next_out,
zstream           781 http/modules/ngx_http_gzip_filter_module.c                    ctx->zstream.avail_in, ctx->zstream.avail_out,
zstream           788 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.next_in) {
zstream           789 http/modules/ngx_http_gzip_filter_module.c         ctx->in_buf->pos = ctx->zstream.next_in;
zstream           791 http/modules/ngx_http_gzip_filter_module.c         if (ctx->zstream.avail_in == 0) {
zstream           792 http/modules/ngx_http_gzip_filter_module.c             ctx->zstream.next_in = NULL;
zstream           796 http/modules/ngx_http_gzip_filter_module.c     ctx->out_buf->last = ctx->zstream.next_out;
zstream           798 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.avail_out == 0) {
zstream           821 http/modules/ngx_http_gzip_filter_module.c         ctx->zstream.avail_out = 0;
zstream           877 http/modules/ngx_http_gzip_filter_module.c     ctx->zin = ctx->zstream.total_in;
zstream           878 http/modules/ngx_http_gzip_filter_module.c     ctx->zout = 10 + ctx->zstream.total_out + 8;
zstream           880 http/modules/ngx_http_gzip_filter_module.c     rc = deflateEnd(&ctx->zstream);
zstream           900 http/modules/ngx_http_gzip_filter_module.c     if (ctx->zstream.avail_out >= 8) {
zstream           945 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.avail_in = 0;
zstream           946 http/modules/ngx_http_gzip_filter_module.c     ctx->zstream.avail_out = 0;