ReactOS 0.4.16-dev-752-g47bae01
|
Go to the source code of this file.
Classes | |
struct | lz_info |
Typedefs | |
typedef struct lz_info | lz_info |
typedef int(* | get_chars_t) (lz_info *lzi, int n, u_char *buf) |
typedef int(* | output_match_t) (lz_info *lzi, int match_pos, int match_len) |
typedef void(* | output_literal_t) (lz_info *lzi, u_char ch) |
Functions | |
void | lz_init (lz_info *lzi, int wsize, int max_dist, int max_match, int min_match, int frame_size, get_chars_t get_chars, output_match_t output_match, output_literal_t output_literal, void *user_data) |
void | lz_release (lz_info *lzi) |
void | lz_reset (lz_info *lzi) |
void | lz_stop_compressing (lz_info *lzi) |
int | lz_left_to_process (lz_info *lzi) |
int | lz_compress (lz_info *lzi, int nchars) |
Definition at line 24 of file lz_nonslide.h.
Definition at line 23 of file lz_nonslide.h.
Definition at line 26 of file lz_nonslide.h.
Definition at line 25 of file lz_nonslide.h.
Definition at line 289 of file lz_nonslide.c.
Referenced by lzx_compress_block().
void lz_init | ( | lz_info * | lzi, |
int | wsize, | ||
int | max_dist, | ||
int | max_match, | ||
int | min_match, | ||
int | frame_size, | ||
get_chars_t | get_chars, | ||
output_match_t | output_match, | ||
output_literal_t | output_literal, | ||
void * | user_data | ||
) |
Definition at line 42 of file lz_nonslide.c.
Referenced by lzx_init().
Definition at line 142 of file lz_nonslide.c.
Referenced by fill_blockbuf(), lz_compress(), and lzx_compress_block().
Definition at line 90 of file lz_nonslide.c.
Referenced by lzx_reset().
Definition at line 283 of file lz_nonslide.c.
Referenced by check_entropy().