Searched defs:inflate_state (Results 1 – 4 of 4) sorted by relevance
82 struct inflate_state { struct84 inflate_mode mode; /* current inflate mode */97 unsigned whave; /* valid bytes in the window */98 unsigned wnext; /* window write index */101 unsigned long hold; /* input bit accumulator */102 unsigned bits; /* number of bits in "in" */107 unsigned extra; /* extra bits needed */111 unsigned lenbits; /* index bits for lencode */112 unsigned distbits; /* index bits for distcode */121 code codes[ENOUGH]; /* space for code tables */[all …]
81 struct inflate_state { struct82 inflate_mode mode; /* current inflate mode */94 unsigned whave; /* valid bytes in the window */95 unsigned wnext; /* window write index */98 unsigned long hold; /* input bit accumulator */99 unsigned bits; /* number of bits in "in" */104 unsigned extra; /* extra bits needed */108 unsigned lenbits; /* index bits for lencode */109 unsigned distbits; /* index bits for distcode */118 code codes[ENOUGH]; /* space for code tables */[all …]
35 struct inflate_state { struct37 unsigned char FAR *window; /* allocated sliding window, if needed */39 unsigned ncode; /* number of code length code lengths */40 unsigned nlen; /* number of length code lengths */41 unsigned ndist; /* number of distance code lengths */42 unsigned have; /* number of code lengths in lens[] */43 code FAR *next; /* next available space in codes[] */44 unsigned short lens[320]; /* temporary storage for code lengths */45 unsigned short work[288]; /* work area for code table building */46 code codes[ENOUGH]; /* space for code tables */
1192 } inflate_state; typedef
Completed in 28 milliseconds