Lines Matching refs:inflate
207 * Test inflate() with small buffers
230 err = inflate(&d_stream, Z_NO_FLUSH);
235 CHECK_ERR(err, "inflate");
242 fprintf(stderr, "bad inflate\n");
245 printf("inflate(): %s\n", (char *)uncompr);
304 * Test inflate() with large buffers
327 err = inflate(&d_stream, Z_NO_FLUSH);
332 CHECK_ERR(err, "large inflate");
339 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
406 err = inflate(&d_stream, Z_NO_FLUSH);
407 CHECK_ERR(err, "inflate");
413 err = inflate(&d_stream, Z_FINISH);
415 fprintf(stderr, "inflate should report Z_STREAM_END\n");
460 * Test inflate() with a preset dictionary
484 err = inflate(&d_stream, Z_NO_FLUSH);
497 CHECK_ERR(err, "inflate with dict");
504 fprintf(stderr, "bad inflate with dict\n");
507 printf("inflate with dictionary: %s\n", (char *)uncompr);