Searched refs:zfree (Results 1 - 11 of 11) sorted by relevance
/forgerock/web-agents-v4/zlib/ |
H A D | uncompr.c | 43 stream.zfree = (free_func)0;
|
H A D | compress.c | 43 stream.zfree = (free_func)0;
|
H A D | infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 52 if (strm->zfree == (free_func)0) 56 strm->zfree = zcfree; 634 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
|
H A D | zutil.h | 246 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
|
H A D | inflate.c | 202 if (strm->zfree == (free_func)0) 206 strm->zfree = zcfree; 1258 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 1449 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
|
H A D | gzread.c | 108 state->strm.zfree = Z_NULL;
|
H A D | zlib.h | 98 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s 99 voidpf opaque; /* private data object passed to zalloc and zfree */ 134 to zero. The application must initialize zalloc, zfree and opaque before 139 parameter for calls of zalloc and zfree. This can be useful for custom 144 If zlib is used in a multi-threaded application, zalloc and zfree must be 147 On 16-bit systems, the functions zalloc and zfree must be able to allocate 208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 227 zalloc, zfree and opaque must be initialized before by the caller. If 228 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default 371 next_in, avail_in, zalloc, zfree an [all...] |
H A D | deflate.c | 248 if (strm->zfree == (free_func)0) 252 strm->zfree = zcfree; 398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { 403 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */
|
H A D | gzwrite.c | 40 strm->zfree = Z_NULL;
|
H A D | zip.c | 1219 zi->ci.stream.zfree = (free_func)0;
|
/forgerock/web-agents-v4/source/ |
H A D | utility.c | 673 strm.zfree = Z_NULL; 727 strm.zfree = Z_NULL;
|
Completed in 896 milliseconds