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