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