#include <zdeflate.h>
Definition at line 195 of file zdeflate.h.
|
DeflateState constructor.
Definition at line 176 of file zdeflate.cpp. 00177 { 00178 strm = NULL; /* pointer back to this zlib stream */ 00179 pending_buf = NULL; /* output still pending */ 00180 pending_out = NULL; /* next pending byte to output to the stream */ 00181 00182 window = NULL; // sliding window usually 2*wSize 00183 prev = NULL; // Link to older string with same hash index. 00184 head = NULL; // Heads of the hash chains or NULL. 00185 l_buf = NULL; // buffer for literals or lengths 00186 d_buf = NULL; // buffer for distance 00187 00188 status = 0; 00189 pending = 0; 00190 noheader = 0; 00191 data_type = Z_UNKNOWN; 00192 method = DEFLATED; 00193 last_flush = 0; 00194 w_size = 0; 00195 w_bits = 0; 00196 w_mask = 0; 00197 window_size = 0; 00198 ins_h = 0; 00199 hash_size = 0; 00200 hash_bits = 0; 00201 hash_mask = 0; 00202 hash_shift = 0; 00203 block_start = 0; 00204 match_length = 0; 00205 prev_match = 0; 00206 match_available = 0; 00207 match_start = 0; 00208 block_start = 0; 00209 lookahead = 0; 00210 prev_length = 0; 00211 max_chain_length = 0; 00212 max_lazy_match = 0; 00213 level = 0; 00214 nice_match = 0; 00215 heap_len = 0; 00216 heap_max = 0; 00217 nice_match = 0; 00218 lit_bufsize = 0; 00219 last_lit = 0; 00220 opt_len = 0; 00221 static_len = 0; 00222 compressed_len = 0; 00223 matches = 0; 00224 last_eob_len = 0; 00225 #ifdef DEBUG 00226 bits_sent = 0; 00227 #endif 00228 bi_buf = 0; 00229 bi_valid = 0; 00230 }
|
|
DeflateState destructor.
Definition at line 242 of file zdeflate.cpp.
|
|
|
|
Definition at line 370 of file zdeflate.h. |
|
Definition at line 374 of file zdeflate.h. |
|
Definition at line 314 of file zdeflate.h. |
|
Definition at line 312 of file zdeflate.h. |
|
Definition at line 308 of file zdeflate.h. |
|
Definition at line 260 of file zdeflate.h. |
|
Definition at line 359 of file zdeflate.h. |
|
Definition at line 355 of file zdeflate.h. |
|
Definition at line 311 of file zdeflate.h. |
|
Definition at line 215 of file zdeflate.h. |
|
Definition at line 324 of file zdeflate.h. |
|
Definition at line 307 of file zdeflate.h. |
|
Definition at line 306 of file zdeflate.h. |
|
Definition at line 297 of file zdeflate.h. |
|
Definition at line 250 of file zdeflate.h. |
|
Definition at line 251 of file zdeflate.h. |
|
Definition at line 253 of file zdeflate.h. |
|
Definition at line 249 of file zdeflate.h. |
|
Definition at line 246 of file zdeflate.h. |
|
Definition at line 317 of file zdeflate.h. |
|
Definition at line 318 of file zdeflate.h. |
|
Definition at line 319 of file zdeflate.h. |
|
Definition at line 248 of file zdeflate.h. |
|
Definition at line 328 of file zdeflate.h. |
|
Definition at line 310 of file zdeflate.h. |
|
Definition at line 362 of file zdeflate.h. |
|
Definition at line 217 of file zdeflate.h. |
|
Definition at line 350 of file zdeflate.h. |
|
Definition at line 294 of file zdeflate.h. |
|
Definition at line 348 of file zdeflate.h. |
|
Definition at line 270 of file zdeflate.h. |
|
Definition at line 267 of file zdeflate.h. |
|
Definition at line 265 of file zdeflate.h. |
|
Definition at line 269 of file zdeflate.h. |
|
Definition at line 360 of file zdeflate.h. |
|
Definition at line 277 of file zdeflate.h. |
|
Definition at line 283 of file zdeflate.h. |
|
Definition at line 216 of file zdeflate.h. |
|
Definition at line 300 of file zdeflate.h. |
|
Definition at line 214 of file zdeflate.h. |
|
Definition at line 357 of file zdeflate.h. |
|
Definition at line 211 of file zdeflate.h. |
|
Definition at line 209 of file zdeflate.h. |
|
Definition at line 210 of file zdeflate.h. |
|
Definition at line 240 of file zdeflate.h. |
|
Definition at line 272 of file zdeflate.h. |
|
Definition at line 266 of file zdeflate.h. |
|
Definition at line 358 of file zdeflate.h. |
|
Definition at line 208 of file zdeflate.h. |
|
Definition at line 295 of file zdeflate.h. |
|
Definition at line 207 of file zdeflate.h. |
|
Definition at line 268 of file zdeflate.h. |
|
Definition at line 222 of file zdeflate.h. |
|
Definition at line 223 of file zdeflate.h. |
|
Definition at line 221 of file zdeflate.h. |
|
Definition at line 225 of file zdeflate.h. |
|
Definition at line 235 of file zdeflate.h. |