stored_len        422 net/zlib.c     local ulg ct_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
stored_len        425 net/zlib.c     local void ct_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
stored_len       2236 net/zlib.c     local void ct_stored_block(s, buf, stored_len, eof)
stored_len       2239 net/zlib.c         ulg stored_len;   /* length of input block */
stored_len       2244 net/zlib.c         s->compressed_len += (stored_len + 4) << 3;
stored_len       2246 net/zlib.c         copy_block(s, buf, (unsigned)stored_len, 1); /* with header */
stored_len       2293 net/zlib.c     local ulg ct_flush_block(s, buf, stored_len, flush)
stored_len       2296 net/zlib.c         ulg stored_len;   /* length of input block */
stored_len       2330 net/zlib.c                 opt_lenb, s->opt_len, static_lenb, s->static_len, stored_len,
stored_len       2343 net/zlib.c         if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable())
stored_len       2349 net/zlib.c             copy_block(buf, (unsigned)stored_len, 0); /* without header */
stored_len       2350 net/zlib.c             s->compressed_len = stored_len << 3;
stored_len       2361 net/zlib.c     	&& opt_lenb > stored_len - s->minCompr) {
stored_len       2369 net/zlib.c         if (stored_len+4 <= opt_lenb && buf != (char*)0)
stored_len       2379 net/zlib.c             ct_stored_block(s, buf, stored_len, eof);