Searched refs:zalloc (Results 1 - 10 of 10) sorted by relevance

/barrelfish-master/lib/zlib/
H A Duncompr.c44 stream.zalloc = (alloc_func)0;
H A Dcompress.c42 stream.zalloc = (alloc_func)0;
H A Dzutil.h265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
H A Dinfback.c22 strm provides memory allocation functions in zalloc and zfree, or
44 if (strm->zalloc == (alloc_func)0) {
45 strm->zalloc = zcalloc;
H A Dinflate.c157 if (strm->zalloc == (alloc_func)0) {
158 strm->zalloc = zcalloc;
1334 source->zalloc == (alloc_func)0 || source->zfree == (free_func)0)
H A Ddeflate.c243 if (strm->zalloc == (alloc_func)0) {
244 strm->zalloc = zcalloc;
363 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
H A Dgzio.c111 s->stream.zalloc = (alloc_func)0;
/barrelfish-master/usr/slideshow/
H A Dzlib_load.c30 d_stream.zalloc = (alloc_func)0;
/barrelfish-master/lib/openssl-1.0.0d/crypto/comp/
H A Dc_zlib.c148 state->istream.zalloc = zlib_zalloc;
160 state->ostream.zalloc = zlib_zalloc;
320 stream.zalloc = (alloc_func)0;
492 ctx->zin.zalloc = Z_NULL;
498 ctx->zout.zalloc = Z_NULL;
/barrelfish-master/include/
H A Dzlib.h94 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s
96 voidpf opaque; /* private data object passed to zalloc and zfree */
131 has dropped to zero. The application must initialize zalloc, zfree and
136 parameter for calls of zalloc and zfree. This can be useful for custom
140 zalloc must return Z_NULL if there is not enough memory for the object.
141 If zlib is used in a multi-threaded application, zalloc and zfree must be
144 On 16-bit systems, the functions zalloc and zfree must be able to allocate
147 pointers returned by zalloc for objects of exactly 65536 bytes *must*
205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
223 zalloc, zfre
[all...]

Completed in 64 milliseconds