Lines Matching full:enough
54 Compression can be done in a single step if the buffers are large enough,
145 zalloc must return Z_NULL if there is not enough memory for the object.
241 deflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
262 enough room in the output buffer), next_in and avail_in are updated and
289 particular avail_in is zero after the call if enough output space has been
300 codes block that is 10 bits long. This assures that enough bytes are output
308 be provided enough bits at this point in order to complete decompression of
328 enough output space. If deflate returns with Z_OK or Z_BUF_ERROR, this
337 below). Then deflate is guaranteed to return Z_STREAM_END. If not enough
389 inflateInit returns Z_OK if success, Z_MEM_ERROR if there was not enough
413 enough room in the output buffer), then next_in and avail_in are updated
467 avail_out must be large enough to hold all of the uncompressed data for the
475 enough output space is provided, then a sliding window will be allocated and
511 by the application), Z_MEM_ERROR if there was not enough memory, Z_BUF_ERROR
512 if no progress was possible or if there was not enough room in the output
603 deflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
661 to dictionary. dictionary must have enough space, where 32768 bytes is
662 always enough. If deflateGetDictionary() is called with dictionary equal to
690 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
723 not have enough output space to complete, then the parameter change will not
737 there was not enough output space to complete the compression of the
803 deflatePrime returns Z_OK if success, Z_BUF_ERROR if there was not enough
876 inflateInit2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
917 to dictionary. dictionary must have enough space, where 32768 bytes is
918 always enough. If inflateGetDictionary() is called with dictionary equal to
956 enough memory, Z_STREAM_ERROR if the source stream state was inconsistent
1243 enough memory, Z_BUF_ERROR if there was not enough room in the output
1258 compress2 returns Z_OK if success, Z_MEM_ERROR if there was not enough
1259 memory, Z_BUF_ERROR if there was not enough room in the output buffer,
1275 of the destination buffer, which must be large enough to hold the entire
1282 enough memory, Z_BUF_ERROR if there was not enough room in the output
1284 the case where there is not enough room, uncompress() will fill the output
1837 * This abbreviated structure exposes just enough for the gzgetc() macro. The