Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/test/
H A Dexample.c66 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr, in test_compress() argument
71 err = compress(compr, &comprLen, (const Bytef*)hello, len); in test_compress()
76 err = uncompress(uncompr, &uncomprLen, compr, comprLen); in test_compress()
172 static void test_deflate(Byte *compr, uLong comprLen) { in test_deflate() argument
187 while (c_stream.total_in != len && c_stream.total_out < comprLen) { in test_deflate()
207 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_inflate() argument
225 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { in test_inflate()
246 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_deflate() argument
259 c_stream.avail_out = (uInt)comprLen; in test_large_deflate()
299 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr, in test_large_inflate() argument
[all …]