Home
last modified time | relevance | path

Searched refs:d_stream (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/contrib/zlib/test/
H A Dexample.c210 z_stream d_stream; /* decompression stream */ in test_inflate() local
214 d_stream.zalloc = zalloc; in test_inflate()
215 d_stream.zfree = zfree; in test_inflate()
216 d_stream.opaque = (voidpf)0; in test_inflate()
218 d_stream.next_in = compr; in test_inflate()
219 d_stream.avail_in = 0; in test_inflate()
220 d_stream.next_out = uncompr; in test_inflate()
222 err = inflateInit(&d_stream); in test_inflate()
225 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { in test_inflate()
226 d_stream.avail_in = d_stream.avail_out = 1; /* force small buffers */ in test_inflate()
[all …]