Home | History | Annotate | Download | only in net

Lines Matching defs:STORED

377     Byte  method;        /* STORED (for zip only) or DEFLATED */
494 * data is still in the window so we can still emit a stored block even
498 * even emit a stored file instead of a stored block (saving 5 bytes).
1145 /* Output just the 3-bit `stored' block type value,
1705 /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
1706 * to pending_buf_size, and each stored block has a 5 byte header:
1733 /* Emit a stored block if pending_buf will be full: */
1982 * Each code tree is stored in a compressed form which is itself
2952 * Send a stored block
2967 /* Send just the `stored block' type code without any length bytes or data.
2985 * of one. (There are no problems if the previous block is stored or fixed.)
3025 /* Build the Huffman trees unless a stored block is forced */
3052 Tracev((stderr, "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u ",
3060 opt_lenb = static_lenb = stored_len + 5; /* force a stored block */
3064 if (buf != (char*)0) { /* force stored block */
3073 * transform a block into a stored block.
3158 * on 16 bit machines and because stored blocks are restricted to
3280 * Copy a stored block, storing first the length and its
3742 * but removes the length bytes of the resulting empty stored block. When
3879 LENS, /* get lengths for stored */
3880 STORED, /* processing stored block */
3898 uInt left; /* if STORED, bytes left to copy */
4092 case 0: /* stored */
4093 Tracev((stderr, "inflate: stored block%s\n",
4098 s->mode = LENS; /* get length of stored block */
4137 z->msg = "invalid stored block lengths";
4143 Tracev((stderr, "inflate: stored length %u\n", s->sub.left));
4144 s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
4146 case STORED:
4158 Tracev((stderr, "inflate: stored end, %lu total out\n",
4395 * a `stored' block type value but not the (zero) length bytes.