Lines Matching defs:BLOCKS
496 * all blocks if lit_bufsize is not greater than 32K.)
1705 /* Stored blocks are limited to 0xffff bytes, pending_buf is limited
2984 * the last real code. In this case we send two empty static blocks instead
3158 * on 16 bit machines and because stored blocks are restricted to
3378 BLOCKS, /* decompressing blocks */
3407 *blocks; /* current inflate_blocks state */
3418 z->state->mode = z->state->nowrap ? BLOCKS : METHOD;
3419 inflate_blocks_reset(z->state->blocks, z, Z_NULL);
3429 if (z->state->blocks != Z_NULL)
3430 inflate_blocks_free(z->state->blocks, z);
3459 z->state->blocks = Z_NULL;
3478 if ((z->state->blocks =
3546 z->state->mode = BLOCKS;
3577 case BLOCKS:
3578 r = inflate_blocks(z->state->blocks, z, r);
3580 r = inflate_packet_flush(z->state->blocks);
3592 inflate_blocks_reset(z->state->blocks, z, &z->state->sub.check.was);
3664 inflate_set_dictionary(z->state->blocks, dictionary, length);
3665 z->state->mode = BLOCKS;
3674 * be BLOCKS (i.e. we should be willing to see the start of a series of
3675 * BLOCKS). On exit, the output will also be caught up, and the checksum
3681 if (z->state->mode != BLOCKS)
3683 return inflate_addhistory(z->state->blocks, z);
3733 z->state->mode = BLOCKS;
3750 if (z == Z_NULL || z->state == Z_NULL || z->state->blocks == Z_NULL)
3752 return inflate_blocks_sync_point(z->state->blocks);
3864 /* infutil.h -- types and macros common to blocks and codes
3890 /* inflate blocks semi-private state */
3983 2. Distance pointers can point back across blocks, up to 32k away.
3991 store blocks with no distance codes, but this was discovered to be
4002 7. Unzip can check dynamic Huffman blocks for complete code sets.
4038 Tracev((stderr, "inflate: blocks reset\n"));
4064 Tracev((stderr, "inflate: blocks allocated\n"));
4328 Tracev((stderr, "inflate: blocks freed\n"));
4345 * be BLOCKS (i.e. we should be willing to see the start of a series of
4346 * BLOCKS). On exit, the output will also be caught up, and the checksum
5308 /* inflate_util.c -- data and routines common to blocks and codes