Lines Matching full:decomp
763 spdy_decompress_header_block(tvbuff_t *tvb, z_streamp decomp,
771 decomp->next_in = (Bytef *)hptr;
772 decomp->avail_in = length;
773 decomp->next_out = uncomp_block;
774 decomp->avail_out = bufsize;
775 retcode = inflate(decomp, Z_SYNC_FLUSH);
777 if (decomp->adler != dictionary_id) {
779 (guint)decomp->adler, dictionary_id);
781 retcode = inflateSetDictionary(decomp,
785 retcode = inflate(decomp, Z_SYNC_FLUSH);
792 *uncomp_length = bufsize - decomp->avail_out;
795 if (decomp->avail_in != 0)
797 printf(" but there were %d input bytes left over\n", decomp->avail_in);
1096 z_streamp decomp = frame_type == SPDY_SYN_STREAM ?
1099 spdy_decompress_header_block(tvb, decomp,