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

12

/freebsd-12-stable/stand/libsa/
H A Dzalloc_protos.h36 Library void zfree(struct MemPool *mpool, void *ptr, uintptr_t bytes);
H A Dzalloc_malloc.c89 zfree(&MallocPool, base, incr);
140 zfree(&MallocPool, res, bytes);
H A Dzalloc.c171 * zfree() - free previously allocated memory
175 zfree(MemPool *mp, void *ptr, uintptr_t bytes) function
196 panic("zfree(%p,%ju): wild pointer", ptr, (uintmax_t)bytes);
215 panic("zfree(%p,%ju): corrupt memlist1", ptr,
250 panic("zfree(%p,%ju): corrupt memlist2", ptr,
/freebsd-12-stable/sys/contrib/zlib/test/
H A Dexample.c73 static free_func zfree = myfree; variable
78 static free_func zfree = (free_func)0; variable
209 c_stream.zfree = zfree;
248 d_stream.zfree = zfree;
287 c_stream.zfree = zfree;
344 d_stream.zfree = zfree;
[all...]
H A Dinfcover.c34 zalloc, zfree, and opaque members of strm to use
172 strm->zfree = mem_free;
233 strm->zfree = Z_NULL;
/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample.c98 static free_func zfree = myfree; variable
103 static free_func zfree = (free_func)0; variable
234 c_stream.zfree = zfree;
273 d_stream.zfree = zfree;
312 c_stream.zfree = zfree;
369 d_stream.zfree = zfree;
[all...]
H A Dexample_original.c90 static free_func zfree = myfree; variable
95 static free_func zfree = (free_func)0; variable
226 c_stream.zfree = zfree;
265 d_stream.zfree = zfree;
304 c_stream.zfree = zfree;
361 d_stream.zfree = zfree;
[all...]
H A Dfitblk_original.c149 def.zfree = Z_NULL;
181 inf.zfree = Z_NULL;
H A Dfitblk.c164 def.zfree = Z_NULL;
198 inf.zfree = Z_NULL;
H A Dzwrapbench.c295 def.zfree = Z_NULL;
339 def.zfree = Z_NULL;
440 inf.zfree = Z_NULL;
480 inf.zfree = Z_NULL;
/freebsd-12-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp_zlib.c75 z.zfree = Z_NULL;
H A Dh_comp_zlib_rnd.c79 z.zfree = Z_NULL;
/freebsd-12-stable/sys/contrib/zlib/
H A Dcompress.c38 stream.zfree = (free_func)0;
H A Duncompr.c52 stream.zfree = (free_func)0;
H A Dinfback.c22 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 Dzutil.h264 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
/freebsd-12-stable/sys/geom/uzip/
H A Dg_uzip_zlib.c114 zp->zs.zfree = z_free;
/freebsd-12-stable/sys/dev/random/
H A Dunit_test.c97 c_stream.zfree = myfree;
/freebsd-12-stable/sys/sys/
H A Dzutil.h225 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dzlib.h293 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s
294 voidpf opaque; /* private data object passed to zalloc and zfree */
306 has dropped to zero. The application must initialize zalloc, zfree and
311 parameter for calls of zalloc and zfree. This can be useful for custom
316 On 16-bit systems, the functions zalloc and zfree must be able to allocate
374 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
392 zalloc, zfree and opaque must be initialized before by the caller.
393 If zalloc and zfree are set to Z_NULL, deflateInit updates them to
504 zalloc, zfree and opaque must be initialized before by the caller. If
505 zalloc and zfree ar
[all...]
/freebsd-12-stable/crypto/openssl/crypto/comp/
H A Dc_zlib.c132 state->istream.zfree = zlib_zfree;
141 state->ostream.zfree = zlib_zfree;
336 ctx->zin.zfree = Z_NULL;
338 ctx->zout.zfree = Z_NULL;
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzutil.h271 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
H A Dinflate.c168 if (strm->zfree == (free_func)0) strm->zfree = zcfree;
1186 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0)
1361 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
/freebsd-12-stable/sys/opencrypto/
H A Dcryptodeflate.c117 zbuf.zfree = z_free;
/freebsd-12-stable/usr.sbin/ppp/
H A Ddeflate.c500 state->cx.zfree = NULL;
523 state->cx.zfree = NULL;

Completed in 249 milliseconds

12