Lines Matching refs:inflate
33 #include "inflate.h"
180 inflate() is run until all of the input data is consumed. */
198 /* cover all of the lines in inflate.c up to inflate() */
208 - fputs("inflate built-in memory routines\n", stderr);
209 + std::cout << "inflate built-in memory routines" << std::endl;;
212 /* cover all inflate() header and trailer cases and code after inflate() */
219 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR);
222 - fputs("inflate bad parameters\n", stderr);
223 + std::cout << "inflate bad parameters" << std::endl;
237 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
238 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_MEM_ERROR);
246 ret = inflate(&strm, Z_NO_FLUSH); assert(ret == Z_STREAM_ERROR);
300 /* do a raw inflate of data in hexadecimal with both inflate and inflateBack */
320 /* first with inflate */
324 /* cover deflate data cases in both inflate() and inflateBack() */