Lines Matching defs:state_t
70 typedef struct state_t { struct
71 off_t gunzip_bytes_out; /* number of output bytes */
72 uint32_t gunzip_crc;
74 int gunzip_src_fd;
75 unsigned gunzip_outbuf_count; /* bytes in output buffer */
77 unsigned char *gunzip_window;
79 uint32_t *gunzip_crc_table;
82 unsigned gunzip_bb; /* bit buffer */
83 unsigned char gunzip_bk; /* bits in bit buffer */
86 unsigned char *bytebuffer; /* buffer itself */
87 off_t to_read; /* compressed bytes to read (unzip only, -1 for gunzip) */
89 unsigned bytebuffer_offset; /* buffer position */
90 unsigned bytebuffer_size; /* how much data is there (size <= max) */
93 unsigned inflate_codes_ml; /* masks for bl and bd bits */
94 unsigned inflate_codes_md; /* masks for bl and bd bits */
95 unsigned inflate_codes_bb; /* bit buffer */
96 unsigned inflate_codes_k; /* number of bits in bit buffer */
120 } state_t; argument