Searched refs:deflate_state (Results 1 - 21 of 21) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32c.c27 deflate_state *s,
32 deflate_state *s,
36 deflate_state *s,
48 deflate_state *s,
H A Dgvmat32.asm52 ; deflate_state *s;
89 ; in zlib in the deflate_state structure since the asm code was first written
634 ;;; Offsets for fields in the deflate_state structure. These numbers
635 ;;; are calculated from the definition of deflate_state, with the
637 ;;; changing the definition of deflate_state could easily cause this
669 ;;; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
697 ;;; deflate_state structure during the function's setup (before
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx86/
H A Dgvmat32c.c27 deflate_state *s,
32 deflate_state *s,
36 deflate_state *s,
48 deflate_state *s,
H A Dgvmat32.asm52 ; deflate_state *s;
89 ; in zlib in the deflate_state structure since the asm code was first written
634 ;;; Offsets for fields in the deflate_state structure. These numbers
635 ;;; are calculated from the definition of deflate_state, with the
637 ;;; changing the definition of deflate_state could easily cause this
669 ;;; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
697 ;;; deflate_state structure during the function's setup (before
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddefutil.h71 typedef struct deflate_state { struct
239 } deflate_state; typedef in typeref:struct:deflate_state
243 deflate_state deflate_memory;
267 void zlib_tr_init (deflate_state *s);
268 int zlib_tr_tally (deflate_state *s, unsigned dist, unsigned lc);
269 ulg zlib_tr_flush_block (deflate_state *s, char *buf, ulg stored_len,
271 void zlib_tr_align (deflate_state *s);
272 void zlib_tr_stored_block (deflate_state *s, char *buf, ulg stored_len,
274 void zlib_tr_stored_type_only (deflate_state *);
305 static inline void bi_flush(deflate_state *
[all...]
H A Ddeftree.c136 static void init_block (deflate_state *s);
137 static void pqdownheap (deflate_state *s, ct_data *tree, int k);
138 static void gen_bitlen (deflate_state *s, tree_desc *desc);
140 static void build_tree (deflate_state *s, tree_desc *desc);
141 static void scan_tree (deflate_state *s, ct_data *tree, int max_code);
142 static void send_tree (deflate_state *s, ct_data *tree, int max_code);
143 static int build_bl_tree (deflate_state *s);
144 static void send_all_trees (deflate_state *s, int lcodes, int dcodes,
146 static void compress_block (deflate_state *s, ct_data *ltree,
148 static void set_data_type (deflate_state *
[all...]
H A Ddeflate.c66 typedef block_state (*compress_func) (deflate_state *s, int flush);
69 static void fill_window (deflate_state *s);
70 static block_state deflate_stored (deflate_state *s, int flush);
71 static block_state deflate_fast (deflate_state *s, int flush);
72 static block_state deflate_slow (deflate_state *s, int flush);
73 static void lm_init (deflate_state *s);
74 static void putShortMSB (deflate_state *s, uInt b);
77 static uInt longest_match (deflate_state *s, IPos cur_match);
80 static void check_match (deflate_state *s, IPos start, IPos match,
176 deflate_state *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/pppdump/
H A Ddeflate.c55 struct deflate_state { struct
119 struct deflate_state *state = (struct deflate_state *) arg;
141 struct deflate_state *state;
153 state = (struct deflate_state *) malloc(sizeof(*state));
174 struct deflate_state *state = (struct deflate_state *) arg;
186 struct deflate_state *state = (struct deflate_state *) arg;
210 struct deflate_state *stat
[all...]
H A Dzlib.c216 typedef struct deflate_state { struct
389 } FAR deflate_state; typedef in typeref:struct:deflate_state
408 local void ct_init OF((deflate_state *s));
409 local int ct_tally OF((deflate_state *s, int dist, int lc));
410 local ulg ct_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
412 local void ct_align OF((deflate_state *s));
413 local void ct_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
415 local void ct_stored_type_only OF((deflate_state *s));
530 local void fill_window OF((deflate_state *s));
531 local int deflate_fast OF((deflate_state *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/modules/
H A Ddeflate.c70 struct deflate_state { struct
207 struct deflate_state *state;
226 state = (struct deflate_state *) ALLOC_SLEEP(sizeof(*state));
228 state = (struct deflate_state *) ALLOC_NOSLEEP(sizeof(*state));
253 struct deflate_state *state = (struct deflate_state *) arg;
265 struct deflate_state *state = (struct deflate_state *) arg;
289 struct deflate_state *state = (struct deflate_state *) ar
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/
H A Dtrees.c143 local void init_block OF((deflate_state *s));
144 local void pqdownheap OF((deflate_state *s, ct_data *tree, int k));
145 local void gen_bitlen OF((deflate_state *s, tree_desc *desc));
147 local void build_tree OF((deflate_state *s, tree_desc *desc));
148 local void scan_tree OF((deflate_state *s, ct_data *tree, int max_code));
149 local void send_tree OF((deflate_state *s, ct_data *tree, int max_code));
150 local int build_bl_tree OF((deflate_state *s));
151 local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
153 local void compress_block OF((deflate_state *s, ct_data *ltree,
155 local void set_data_type OF((deflate_state *
[all...]
H A Ddeflate.h263 } FAR deflate_state; typedef in typeref:struct:internal_state
282 void _tr_init OF((deflate_state *s));
283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
284 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
286 void _tr_align OF((deflate_state *s));
287 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
H A Ddeflate.c73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
76 local void fill_window OF((deflate_state *s));
77 local block_state deflate_stored OF((deflate_state *s, int flush));
78 local block_state deflate_fast OF((deflate_state *s, int flush));
80 local block_state deflate_slow OF((deflate_state *s, int flush));
82 local void lm_init OF((deflate_state *s));
83 local void putShortMSB OF((deflate_state *s, uInt b));
89 uInt longest_match OF((deflate_state *s, IPos cur_match));
91 local uInt longest_match OF((deflate_state *s, IPos cur_match));
94 local uInt longest_match_fast OF((deflate_state *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/
H A Dtrees.c143 local void init_block OF((deflate_state *s));
144 local void pqdownheap OF((deflate_state *s, ct_data *tree, int k));
145 local void gen_bitlen OF((deflate_state *s, tree_desc *desc));
147 local void build_tree OF((deflate_state *s, tree_desc *desc));
148 local void scan_tree OF((deflate_state *s, ct_data *tree, int max_code));
149 local void send_tree OF((deflate_state *s, ct_data *tree, int max_code));
150 local int build_bl_tree OF((deflate_state *s));
151 local void send_all_trees OF((deflate_state *s, int lcodes, int dcodes,
153 local void compress_block OF((deflate_state *s, ct_data *ltree,
155 local void set_data_type OF((deflate_state *
[all...]
H A Ddeflate.h263 } FAR deflate_state; typedef in typeref:struct:internal_state
282 void _tr_init OF((deflate_state *s));
283 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
284 void _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
286 void _tr_align OF((deflate_state *s));
287 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
H A Ddeflate.c73 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
76 local void fill_window OF((deflate_state *s));
77 local block_state deflate_stored OF((deflate_state *s, int flush));
78 local block_state deflate_fast OF((deflate_state *s, int flush));
80 local block_state deflate_slow OF((deflate_state *s, int flush));
82 local void lm_init OF((deflate_state *s));
83 local void putShortMSB OF((deflate_state *s, uInt b));
89 uInt longest_match OF((deflate_state *s, IPos cur_match));
91 local uInt longest_match OF((deflate_state *s, IPos cur_match));
94 local uInt longest_match_fast OF((deflate_state *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ppp-2.4.4/common/
H A Dzlib.c341 typedef struct deflate_state { struct
509 } FAR deflate_state; typedef in typeref:struct:deflate_state
528 void _tr_init OF((deflate_state *s));
529 int _tr_tally OF((deflate_state *s, unsigned dist, unsigned lc));
530 ulg _tr_flush_block OF((deflate_state *s, charf *buf, ulg stored_len,
532 void _tr_align OF((deflate_state *s));
533 void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len,
535 void _tr_stored_type_only OF((deflate_state *));
612 typedef block_state (*compress_func) OF((deflate_state *s, int flush));
615 local void fill_window OF((deflate_state *
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm2 ; deflate_state *s,
37 ; deflate_state *s;
76 ; in the deflate_state structure since the asm code was first written
86 ;;; Offsets for fields in the deflate_state structure. These numbers
87 ;;; are calculated from the definition of deflate_state, with the
89 ;;; changing the definition of deflate_state could easily cause this
94 ; in zlib in the deflate_state structure since the asm code was first written
170 ;;; deflate_state structure during the function's setup (before
173 ; parameter 1 in rcx (deflate_state* s), param 2 in edx -> r8 (cur match)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masmx64/
H A Dgvmat64.asm2 ; deflate_state *s,
37 ; deflate_state *s;
76 ; in the deflate_state structure since the asm code was first written
86 ;;; Offsets for fields in the deflate_state structure. These numbers
87 ;;; are calculated from the definition of deflate_state, with the
89 ;;; changing the definition of deflate_state could easily cause this
94 ; in zlib in the deflate_state structure since the asm code was first written
170 ;;; deflate_state structure during the function's setup (before
173 ; parameter 1 in rcx (deflate_state* s), param 2 in edx -> r8 (cur match)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm98 ; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
144 ; deflate_state structure during the function's setup (before
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/masm686/
H A Dmatch.asm98 ; uInt longest_match(deflate_state *deflatestate, IPos curmatch)
144 ; deflate_state structure during the function's setup (before

Completed in 142 milliseconds