#include "deflate.h"
Go to the source code of this file.
Classes | |
struct | config_s |
Macros | |
#define | check_match(s, start, match, length) |
#define | CLEAR_HASH(s) |
#define | FLUSH_BLOCK(s, last) |
#define | FLUSH_BLOCK_ONLY(s, last) |
#define | HCRC_UPDATE(beg) |
#define | INSERT_STRING(s, str, match_head) |
#define | MAX_STORED 65535 |
#define | MIN(a, b) ((a) > (b) ? (b) : (a)) |
#define | NIL 0 |
#define | RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) |
#define | TOO_FAR 4096 |
#define | UPDATE_HASH(s, h, c) (h = (((h)<<s->hash_shift) ^ (c)) & s->hash_mask) |
Typedefs | |
typedef struct config_s | config |
typedef block_state compress_func | OF((deflate_state *s, int flush)) |
Enumerations | |
enum | block_state { need_more, block_done, finish_started, finish_done, need_more, block_done, finish_started, finish_done } |
Variables | |
const config | configuration_table [10] |
const char | deflate_copyright [] |
Definition at line 1469 of file bloaty/third_party/zlib/deflate.c.
#define CLEAR_HASH | ( | s | ) |
#define FLUSH_BLOCK | ( | s, | |
last | |||
) |
Definition at line 1617 of file bloaty/third_party/zlib/deflate.c.
#define FLUSH_BLOCK_ONLY | ( | s, | |
last | |||
) |
Definition at line 1605 of file bloaty/third_party/zlib/deflate.c.
#define HCRC_UPDATE | ( | beg | ) |
#define INSERT_STRING | ( | s, | |
str, | |||
match_head | |||
) |
#define MAX_STORED 65535 |
Definition at line 1623 of file bloaty/third_party/zlib/deflate.c.
Definition at line 1626 of file bloaty/third_party/zlib/deflate.c.
#define NIL 0 |
Definition at line 107 of file bloaty/third_party/zlib/deflate.c.
#define RANK | ( | f | ) | (((f) * 2) - ((f) > 4 ? 9 : 0)) |
Definition at line 155 of file bloaty/third_party/zlib/deflate.c.
#define TOO_FAR 4096 |
Definition at line 111 of file bloaty/third_party/zlib/deflate.c.
Definition at line 163 of file bloaty/third_party/zlib/deflate.c.
ZEXTERN uLong ZEXPORT crc32_combine64 OF | ( | (deflate_state *s, int flush) | ) |
Addition for GDAL : START
Addition for GDAL : END
Definition at line 73 of file bloaty/third_party/zlib/deflate.c.
enum block_state |
Enumerator | |
---|---|
need_more | |
block_done | |
finish_started | |
finish_done | |
need_more | |
block_done | |
finish_started | |
finish_done |
Definition at line 66 of file bloaty/third_party/zlib/deflate.c.
Definition at line 763 of file bloaty/third_party/zlib/deflate.c.
block_state deflate_fast | ( | deflate_state * | s, |
int | flush | ||
) |
Definition at line 1824 of file bloaty/third_party/zlib/deflate.c.
block_state deflate_huff | ( | deflate_state * | s, |
int | flush | ||
) |
Definition at line 2130 of file bloaty/third_party/zlib/deflate.c.
block_state deflate_rle | ( | deflate_state * | s, |
int | flush | ||
) |
Definition at line 2057 of file bloaty/third_party/zlib/deflate.c.
block_state deflate_slow | ( | deflate_state * | s, |
int | flush | ||
) |
Definition at line 1926 of file bloaty/third_party/zlib/deflate.c.
block_state deflate_stored | ( | deflate_state * | s, |
int | flush | ||
) |
Definition at line 1643 of file bloaty/third_party/zlib/deflate.c.
Definition at line 652 of file bloaty/third_party/zlib/deflate.c.
Definition at line 1102 of file bloaty/third_party/zlib/deflate.c.
Definition at line 1076 of file bloaty/third_party/zlib/deflate.c.
Definition at line 445 of file bloaty/third_party/zlib/deflate.c.
int ZEXPORT deflateInit2_ | ( | z_streamp | strm, |
int | level, | ||
int | method, | ||
int | windowBits, | ||
int | memLevel, | ||
int | strategy, | ||
const char * | version, | ||
int | stream_size | ||
) |
Definition at line 240 of file bloaty/third_party/zlib/deflate.c.
Definition at line 228 of file bloaty/third_party/zlib/deflate.c.
Definition at line 568 of file bloaty/third_party/zlib/deflate.c.
Definition at line 528 of file bloaty/third_party/zlib/deflate.c.
Definition at line 542 of file bloaty/third_party/zlib/deflate.c.
Definition at line 505 of file bloaty/third_party/zlib/deflate.c.
Definition at line 467 of file bloaty/third_party/zlib/deflate.c.
Definition at line 376 of file bloaty/third_party/zlib/deflate.c.
int ZEXPORT deflateSetHeader | ( | z_streamp | strm, |
gz_headerp | head | ||
) |
Definition at line 517 of file bloaty/third_party/zlib/deflate.c.
Definition at line 353 of file bloaty/third_party/zlib/deflate.c.
int ZEXPORT deflateTune | ( | z_streamp | strm, |
int | good_length, | ||
int | max_lazy, | ||
int | nice_length, | ||
int | max_chain | ||
) |
Definition at line 617 of file bloaty/third_party/zlib/deflate.c.
void fill_window | ( | deflate_state * | s | ) |
Definition at line 1482 of file bloaty/third_party/zlib/deflate.c.
void flush_pending | ( | z_streamp | strm | ) |
Definition at line 730 of file bloaty/third_party/zlib/deflate.c.
void lm_init | ( | deflate_state * | s | ) |
Definition at line 1194 of file bloaty/third_party/zlib/deflate.c.
uInt longest_match | ( | deflate_state * | s, |
IPos | cur_match | ||
) |
Definition at line 1236 of file bloaty/third_party/zlib/deflate.c.
void slide_hash OF | ( | (deflate_state *s) | ) |
block_state deflate_stored OF | ( | (deflate_state *s, int flush) | ) |
uInt longest_match OF | ( | (deflate_state *s, IPos cur_match) | ) |
void putShortMSB OF | ( | (deflate_state *s, uInt b) | ) |
int deflateStateCheck OF | ( | (z_streamp strm) | ) |
void putShortMSB | ( | deflate_state * | s, |
uInt | b | ||
) |
Definition at line 716 of file bloaty/third_party/zlib/deflate.c.
Definition at line 1164 of file bloaty/third_party/zlib/deflate.c.
void slide_hash | ( | deflate_state * | s | ) |
Definition at line 201 of file bloaty/third_party/zlib/deflate.c.
Definition at line 134 of file bloaty/third_party/zlib/deflate.c.
const char deflate_copyright[] |
Definition at line 54 of file bloaty/third_party/zlib/deflate.c.