Home | History | Annotate | Download | only in spdy

Lines Matching refs:decomp

3080   z_stream* decomp = GetHeaderDecompressor();
3081 if (decomp == NULL) {
3090 decomp->next_in = reinterpret_cast<Bytef*>(const_cast<char*>(data));
3091 decomp->avail_in = len;
3096 while (decomp->avail_in > 0 && processed_successfully) {
3097 decomp->next_out = reinterpret_cast<Bytef*>(buffer);
3098 decomp->avail_out = arraysize(buffer);
3100 int rv = inflate(decomp, Z_SYNC_FLUSH);
3110 if (decomp->adler == dictionary_id) {
3111 rv = inflateSetDictionary(decomp,
3115 rv = inflate(decomp, Z_SYNC_FLUSH);
3123 bool input_exhausted = ((rv == Z_BUF_ERROR) && (decomp->avail_in == 0));
3125 size_t decompressed_len = arraysize(buffer) - decomp->avail_out;