Home | History | Annotate | Download | only in pascal

Lines Matching refs:inflate

226  * Test inflate with small buffers
252 err := inflate(d_stream, Z_NO_FLUSH);
255 CHECK_ERR(err, 'inflate');
262 EXIT_ERR('bad inflate')
264 WriteLn('inflate(): ', PChar(uncompr));
321 * Test inflate with large buffers
345 err := inflate(d_stream, Z_NO_FLUSH);
348 CHECK_ERR(err, 'large inflate');
356 WriteLn('bad large inflate: ', d_stream.total_out);
427 inflate(d_stream, Z_NO_FLUSH);
428 CHECK_ERR(err, 'inflate');
434 err := inflate(d_stream, Z_FINISH);
436 EXIT_ERR('inflate should report DATA_ERROR');
481 * Test inflate with a preset dictionary
506 err := inflate(d_stream, Z_NO_FLUSH);
515 CHECK_ERR(err, 'inflate with dict');
522 EXIT_ERR('bad inflate with dict')
524 WriteLn('inflate with dictionary: ', PChar(uncompr));
568 WriteLn('** Testing inflate with small buffers');
577 WriteLn('** Testing inflate with large buffers');
592 WriteLn('** Testing deflate and inflate with preset dictionary');