• 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:compr

37 void test_compress      OF((Byte *compr, uLong comprLen,
41 void test_deflate OF((Byte *compr, uLong comprLen));
42 void test_inflate OF((Byte *compr, uLong comprLen,
44 void test_large_deflate OF((Byte *compr, uLong comprLen,
46 void test_large_inflate OF((Byte *compr, uLong comprLen,
48 void test_flush OF((Byte *compr, uLong *comprLen));
49 void test_sync OF((Byte *compr, uLong comprLen,
51 void test_dict_deflate OF((Byte *compr, uLong comprLen));
52 void test_dict_inflate OF((Byte *compr, uLong comprLen,
59 void test_compress(compr, comprLen, uncompr, uncomprLen)
60 Byte *compr, *uncompr;
66 err = compress(compr, &comprLen, (const Bytef*)hello, len);
71 err = uncompress(uncompr, &uncomprLen, compr, comprLen);
169 void test_deflate(compr, comprLen)
170 Byte *compr;
185 c_stream.next_out = compr;
207 void test_inflate(compr, comprLen, uncompr, uncomprLen)
208 Byte *compr, *uncompr;
220 d_stream.next_in = compr;
248 void test_large_deflate(compr, comprLen, uncompr, uncomprLen)
249 Byte *compr, *uncompr;
262 c_stream.next_out = compr;
279 c_stream.next_in = compr;
303 void test_large_inflate(compr, comprLen, uncompr, uncomprLen)
304 Byte *compr, *uncompr;
316 d_stream.next_in = compr;
344 void test_flush(compr, comprLen)
345 Byte *compr;
360 c_stream.next_out = compr;
366 compr[3]++; /* force an error in first compressed block */
382 void test_sync(compr, comprLen, uncompr, uncomprLen)
383 Byte *compr, *uncompr;
395 d_stream.next_in = compr;
426 void test_dict_deflate(compr, comprLen)
427 Byte *compr;
445 c_stream.next_out = compr;
463 void test_dict_inflate(compr, comprLen, uncompr, uncomprLen)
464 Byte *compr, *uncompr;
476 d_stream.next_in = compr;
518 Byte *compr, *uncompr;
534 compr = (Byte*)calloc((uInt)comprLen, 1);
536 /* compr and uncompr are cleared to avoid reading uninitialized
539 if (compr == Z_NULL || uncompr == Z_NULL) {
543 test_compress(compr, comprLen, uncompr, uncomprLen);
548 test_deflate(compr, comprLen);
549 test_inflate(compr, comprLen, uncompr, uncomprLen);
551 test_large_deflate(compr, comprLen, uncompr, uncomprLen);
552 test_large_inflate(compr, comprLen, uncompr, uncomprLen);
554 test_flush(compr, &comprLen);
555 test_sync(compr, comprLen, uncompr, uncomprLen);
558 test_dict_deflate(compr, comprLen);
559 test_dict_inflate(compr, comprLen, uncompr, uncomprLen);
561 free(compr);