|
#define | NIL 0 |
|
#define | TOO_FAR 4096 |
|
#define | MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) |
|
#define | EQUAL 0 |
|
#define | UPDATE_HASH(s, h, c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) |
|
#define | INSERT_STRING(s, str, match_head) |
|
#define | CLEAR_HASH(s) |
|
#define | check_match(s, start, match, length) |
|
#define | FLUSH_BLOCK_ONLY(s, eof) |
|
#define | FLUSH_BLOCK(s, eof) |
|
#define | NIL 0 |
|
#define | TOO_FAR 4096 |
|
#define | MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) |
|
#define | EQUAL 0 |
|
#define | UPDATE_HASH(s, h, c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) |
|
#define | INSERT_STRING(s, str, match_head) |
|
#define | CLEAR_HASH(s) |
|
#define | check_match(s, start, match, length) |
|
#define | FLUSH_BLOCK_ONLY(s, eof) |
|
#define | FLUSH_BLOCK(s, eof) |
|
|
local void fill_window | OF ((deflate_state *s)) |
|
local block_state deflate_stored | OF ((deflate_state *s, int flush)) |
|
local void putShortMSB | OF ((deflate_state *s, uInt b)) |
|
local void flush_pending | OF ((z_streamp strm)) |
|
local int read_buf | OF ((z_streamp strm, Bytef *buf, unsigned size)) |
|
local uInt longest_match | OF ((deflate_state *s, IPos cur_match)) |
|
int ZEXPORT | deflateInit_ (z_streamp strm, int level, const char *version, int stream_size) |
|
int ZEXPORT | deflateInit2_ (z_streamp strm, int level, int method, int windowBits, int memLevel, int strategy, const char *version, int stream_size) |
|
int ZEXPORT | deflateSetDictionary (z_streamp strm, const Bytef *dictionary, uInt dictLength) |
|
int ZEXPORT | deflateReset (z_streamp strm) |
|
int ZEXPORT | deflateSetHeader (z_streamp strm, gz_headerp head) |
|
int ZEXPORT | deflatePrime (z_streamp strm, int bits, int value) |
|
int ZEXPORT | deflateParams (z_streamp strm, int level, int strategy) |
|
int ZEXPORT | deflateTune (z_streamp strm, int good_length, int max_lazy, int nice_length, int max_chain) |
|
uLong ZEXPORT | deflateBound (z_streamp strm, uLong sourceLen) |
|
local void | putShortMSB (deflate_state *s, uInt b) |
|
local void | flush_pending (z_streamp strm) |
|
int ZEXPORT | deflate (z_streamp strm, int flush) |
|
int ZEXPORT | deflateEnd (z_streamp strm) |
|
int ZEXPORT | deflateCopy (z_streamp dest, z_streamp source) |
|
local int | read_buf (z_streamp strm, Bytef *buf, unsigned size) |
|
local void | lm_init (deflate_state *s) |
|
local uInt | longest_match (deflate_state *s, IPos cur_match) |
|
local uInt | longest_match_fast (deflate_state *s, IPos cur_match) |
|
local void | fill_window (deflate_state *s) |
|
local block_state | deflate_stored (deflate_state *s, int flush) |
|
local block_state | deflate_fast (deflate_state *s, int flush) |
|
local block_state | deflate_slow (deflate_state *s, int flush) |
|