• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/

Lines Matching refs:uncomprLen

38                             Byte *uncompr, uLong uncomprLen));
40 Byte *uncompr, uLong uncomprLen));
43 Byte *uncompr, uLong uncomprLen));
45 Byte *uncompr, uLong uncomprLen));
47 Byte *uncompr, uLong uncomprLen));
50 Byte *uncompr, uLong uncomprLen));
53 Byte *uncompr, uLong uncomprLen));
59 void test_compress(compr, comprLen, uncompr, uncomprLen)
61 uLong comprLen, uncomprLen;
71 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
85 void test_gzio(fname, uncompr, uncomprLen)
88 uLong uncomprLen;
122 if (gzread(file, uncompr, (unsigned)uncomprLen) != len) {
150 gzgets(file, (char*)uncompr, (int)uncomprLen);
207 void test_inflate(compr, comprLen, uncompr, uncomprLen)
209 uLong comprLen, uncomprLen;
227 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
248 void test_large_deflate(compr, comprLen, uncompr, uncomprLen)
250 uLong comprLen, uncomprLen;
269 c_stream.avail_in = (uInt)uncomprLen;
287 c_stream.avail_in = (uInt)uncomprLen;
303 void test_large_inflate(compr, comprLen, uncompr, uncomprLen)
305 uLong comprLen, uncomprLen;
324 d_stream.avail_out = (uInt)uncomprLen;
333 if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
382 void test_sync(compr, comprLen, uncompr, uncomprLen)
384 uLong comprLen, uncomprLen;
402 d_stream.avail_out = (uInt)uncomprLen;
463 void test_dict_inflate(compr, comprLen, uncompr, uncomprLen)
465 uLong comprLen, uncomprLen;
483 d_stream.avail_out = (uInt)uncomprLen;
520 uLong uncomprLen = comprLen;
535 uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
543 test_compress(compr, comprLen, uncompr, uncomprLen);
546 uncompr, uncomprLen);
549 test_inflate(compr, comprLen, uncompr, uncomprLen);
551 test_large_deflate(compr, comprLen, uncompr, uncomprLen);
552 test_large_inflate(compr, comprLen, uncompr, uncomprLen);
555 test_sync(compr, comprLen, uncompr, uncomprLen);
556 comprLen = uncomprLen;
559 test_dict_inflate(compr, comprLen, uncompr, uncomprLen);