RetroArch
|
#include "deflate.h"
Classes | |
struct | static_tree_desc_s |
Macros | |
#define | MAX_BL_BITS 7 |
#define | END_BLOCK 256 |
#define | REP_3_6 16 |
#define | REPZ_3_10 17 |
#define | REPZ_11_138 18 |
#define | DIST_CODE_LEN 512 /* see definition of array dist_code below */ |
#define | send_code(s, c, tree) send_bits(s, tree[c].Code, tree[c].Len) |
#define | put_short(s, w) |
#define | send_bits(s, value, length) |
#define | SMALLEST 1 |
#define | pqremove(s, tree, top) |
#define | smaller(tree, n, m, depth) |
Variables | |
static const int | extra_lbits [LENGTH_CODES] = {0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0} |
static const int | extra_dbits [D_CODES] = {0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13} |
static const int | extra_blbits [BL_CODES] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7} |
static const uch | bl_order [BL_CODES] = {16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15} |
static ct_data | static_ltree [L_CODES+2] |
static ct_data | static_dtree [D_CODES] |
uch | _dist_code [DIST_CODE_LEN] |
uch | _length_code [MAX_MATCH-MIN_MATCH+1] |
static int | base_length [LENGTH_CODES] |
static int | base_dist [D_CODES] |
static static_tree_desc | static_l_desc |
static static_tree_desc | static_d_desc |
static static_tree_desc | static_bl_desc |
#define DIST_CODE_LEN 512 /* see definition of array dist_code below */ |
#define END_BLOCK 256 |
#define MAX_BL_BITS 7 |
#define REP_3_6 16 |
#define REPZ_11_138 18 |
#define REPZ_3_10 17 |
#define SMALLEST 1 |
void ZLIB_INTERNAL _tr_align | ( | deflate_state * | s | ) |
void ZLIB_INTERNAL _tr_flush_bits | ( | deflate_state * | s | ) |
void ZLIB_INTERNAL _tr_flush_block | ( | deflate_state * | s, |
charf * | buf, | ||
ulg | stored_len, | ||
int | last | ||
) |
void ZLIB_INTERNAL _tr_init | ( | deflate_state * | s | ) |
void ZLIB_INTERNAL _tr_stored_block | ( | deflate_state * | s, |
charf * | buf, | ||
ulg | stored_len, | ||
int | last | ||
) |
int ZLIB_INTERNAL _tr_tally | ( | deflate_state * | s, |
unsigned | dist, | ||
unsigned | lc | ||
) |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
uch _dist_code[DIST_CODE_LEN] |
uch _length_code[MAX_MATCH-MIN_MATCH+1] |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |
|
static |