Lines Matching refs:uncomprLen

61                    uLong uncomprLen) {  in test_compress()  argument
70 err = uncompress(uncompr, &uncomprLen, compr, comprLen); in test_compress()
84 static void test_gzio(const char *fname, Byte *uncompr, uLong uncomprLen) { in test_gzio() argument
117 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) { in test_gzio()
145 gzgets(file, (char*)uncompr, (int)uncomprLen); in test_gzio()
202 uLong uncomprLen) { in test_inflate() argument
219 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) { in test_inflate()
241 uLong uncomprLen) { in test_large_deflate() argument
259 c_stream.avail_in = (uInt)uncomprLen; in test_large_deflate()
270 c_stream.avail_in = (uInt)uncomprLen/2; in test_large_deflate()
277 c_stream.avail_in = (uInt)uncomprLen; in test_large_deflate()
294 uLong uncomprLen) { in test_large_inflate() argument
312 d_stream.avail_out = (uInt)uncomprLen; in test_large_inflate()
321 if (d_stream.total_out != 2*uncomprLen + uncomprLen/2) { in test_large_inflate()
368 uLong uncomprLen) { in test_sync() argument
385 d_stream.avail_out = (uInt)uncomprLen; in test_sync()
443 uLong uncomprLen) { in test_dict_inflate() argument
460 d_stream.avail_out = (uInt)uncomprLen; in test_dict_inflate()
493 uLong uncomprLen = 20000; in main() local
494 uLong comprLen = 3 * uncomprLen; in main()
510 uncompr = (Byte*)calloc((uInt)uncomprLen, 1); in main()
523 test_compress(compr, comprLen, uncompr, uncomprLen); in main()
526 uncompr, uncomprLen); in main()
530 test_inflate(compr, comprLen, uncompr, uncomprLen); in main()
532 test_large_deflate(compr, comprLen, uncompr, uncomprLen); in main()
533 test_large_inflate(compr, comprLen, uncompr, uncomprLen); in main()
536 test_sync(compr, comprLen, uncompr, uncomprLen); in main()
537 comprLen = 3 * uncomprLen; in main()
540 test_dict_inflate(compr, comprLen, uncompr, uncomprLen); in main()