Lines Matching refs:inflate
236 * Test inflate() with small buffers
260 err = inflate(&d_stream, Z_NO_FLUSH);
262 CHECK_ERR(err, "inflate");
269 fprintf(stderr, "bad inflate\n");
272 printf("inflate(): %s\n", (char *)uncompr);
332 * Test inflate() with large buffers
356 err = inflate(&d_stream, Z_NO_FLUSH);
358 CHECK_ERR(err, "large inflate");
365 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
435 inflate(&d_stream, Z_NO_FLUSH);
436 CHECK_ERR(err, "inflate");
442 err = inflate(&d_stream, Z_FINISH);
444 fprintf(stderr, "inflate should report DATA_ERROR\n");
492 * Test inflate() with a preset dictionary
517 err = inflate(&d_stream, Z_NO_FLUSH);
527 CHECK_ERR(err, "inflate with dict");
534 fprintf(stderr, "bad inflate with dict\n");
537 printf("inflate with dictionary: %s\n", (char *)uncompr);