Lines Matching refs:deflate
13 struct deflate { struct
20 void (*crcfunc)(struct deflate *dd, char *data, int len); argument
130 static void output_byte(struct deflate *dd, char sym) in output_byte()
194 static void inflate(struct deflate *dd, struct bitbuf *bb) in inflate()
315 static void deflate(struct deflate *dd, struct bitbuf *bb) in deflate() function
352 static struct deflate *init_deflate(int compress) in init_deflate()
355 struct deflate *dd = xmalloc(sizeof(struct deflate)+32768*(compress ? 4 : 1)); in init_deflate()
357 memset(dd, 0, sizeof(struct deflate)); in init_deflate()
414 static void gzip_crc(struct deflate *dd, char *data, int len) in gzip_crc()
428 struct deflate *dd = init_deflate(1); in gzip_fd()
443 deflate(dd, bb); in gzip_fd()
462 struct deflate *dd = init_deflate(0); in gunzip_fd()