HomeSort by: relevance | last modified time | path
    Searched defs:comprLen (Results 1 - 1 of 1) sorted by relevancy

  /src/common/dist/zlib/test/
example.c 60 static void test_compress(Byte *compr, uLong comprLen, Byte *uncompr,
65 err = compress(compr, &comprLen, (const Bytef*)hello, len);
70 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
166 static void test_deflate(Byte *compr, uLong comprLen) {
181 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
201 static void test_inflate(Byte *compr, uLong comprLen, Byte *uncompr,
219 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
240 static void test_large_deflate(Byte *compr, uLong comprLen, Byte *uncompr,
253 c_stream.avail_out = (uInt)comprLen;
293 static void test_large_inflate(Byte *compr, uLong comprLen, Byte *uncompr
    [all...]

Completed in 118 milliseconds