Searched refs:zfree (Results 1 - 9 of 9) sorted by relevance

/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Duncompr.c44 stream.zfree = (free_func)0;
H A Dcompress.c41 stream.zfree = (free_func)0;
H A Dmaketree.c62 z.zfree = zcfree;
H A Dexample.c172 c_stream.zfree = (free_func)0;
211 d_stream.zfree = (free_func)0;
250 c_stream.zfree = (free_func)0;
307 d_stream.zfree = (free_func)0;
347 c_stream.zfree = (free_func)0;
386 d_stream.zfree = (free_func)0;
428 c_stream.zfree = (free_func)0;
467 d_stream.zfree = (free_func)0;
H A Dinflate.c71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL)
101 if (z->zfree == Z_NULL) z->zfree = zcfree;
H A Dzutil.h217 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dzlib.h81 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
82 voidpf opaque; /* private data object passed to zalloc and zfree */
94 has dropped to zero. The application must initialize zalloc, zfree and
99 parameter for calls of zalloc and zfree. This can be useful for custom
104 If zlib is used in a multi-threaded application, zalloc and zfree must be
107 On 16-bit systems, the functions zalloc and zfree must be able to allocate
164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
182 zalloc, zfree and opaque must be initialized before by the caller.
183 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
297 next_in, avail_in, zalloc, zfree an
[all...]
H A Ddeflate.c232 if (strm->zfree == Z_NULL) strm->zfree = zcfree;
337 strm->zalloc == Z_NULL || strm->zfree == Z_NULL) return Z_STREAM_ERROR;
340 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
H A Dgzio.c91 s->stream.zfree = (free_func)0;

Completed in 232 milliseconds