Lines Matching full:deflate
181 * Test deflate with small buffers
206 err := deflate(c_stream, Z_NO_FLUSH);
207 CHECK_ERR(err, 'deflate');
214 err := deflate(c_stream, Z_FINISH);
217 CHECK_ERR(err, 'deflate');
269 * Test deflate with large buffers and dynamic change of compression level
292 err := deflate(c_stream, Z_NO_FLUSH);
293 CHECK_ERR(err, 'deflate');
295 EXIT_ERR('deflate not greedy');
301 err := deflate(c_stream, Z_NO_FLUSH);
302 CHECK_ERR(err, 'deflate');
308 err := deflate(c_stream, Z_NO_FLUSH);
309 CHECK_ERR(err, 'deflate');
311 err := deflate(c_stream, Z_FINISH);
313 EXIT_ERR('deflate should report Z_STREAM_END');
365 * Test deflate with full flush
386 err := deflate(c_stream, Z_FULL_FLUSH);
387 CHECK_ERR(err, 'deflate');
392 err := deflate(c_stream, Z_FINISH);
394 CHECK_ERR(err, 'deflate');
447 * Test deflate with preset dictionary
471 err := deflate(c_stream, Z_FINISH);
473 EXIT_ERR('deflate should report Z_STREAM_END');
564 WriteLn('** Testing deflate with small buffers');
573 WriteLn('** Testing deflate with large buffers');
582 WriteLn('** Testing deflate with full flush');
592 WriteLn('** Testing deflate and inflate with preset dictionary');