Lines Matching refs:d_stream
93 z_stream d_stream; /* decompression stream */ in test_dict_inflate() local
96 d_stream.zalloc = zalloc; in test_dict_inflate()
97 d_stream.zfree = zfree; in test_dict_inflate()
98 d_stream.opaque = (void *)0; in test_dict_inflate()
100 d_stream.next_in = compr; in test_dict_inflate()
101 d_stream.avail_in = (unsigned int)comprLen; in test_dict_inflate()
103 err = inflateInit(&d_stream); in test_dict_inflate()
107 d_stream.next_out = uncompr; in test_dict_inflate()
108 d_stream.avail_out = (unsigned int)dataLen; in test_dict_inflate()
111 err = inflate(&d_stream, Z_NO_FLUSH); in test_dict_inflate()
115 if (d_stream.adler != dictId) { in test_dict_inflate()
120 &d_stream, (const unsigned char *)data, dictionaryLen); in test_dict_inflate()
125 err = inflateEnd(&d_stream); in test_dict_inflate()