Searched defs:zalloc (Results 1 - 4 of 4) sorted by relevance

/vbox/src/libs/zlib-1.2.6/test/
H A Dexample.c72 static alloc_func zalloc = myalloc; variable
77 static alloc_func zalloc = (alloc_func)0; variable
208 c_stream.zalloc = zalloc;
247 d_stream.zalloc = zalloc;
286 c_stream.zalloc = zalloc;
343 d_stream.zalloc = zalloc;
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dmalloc.c486 * zalloc(size) is always equivalent to calloc(1,size)
488 void * zalloc ( size_t size ) { function
/vbox/src/libs/zlib-1.2.6/contrib/dotzlib/DotZLib/
H A DDotZLib.cs44 uint zalloc; field in struct:DotZLib.ZStream
/vbox/src/libs/zlib-1.2.6/
H A Dzlib.h97 alloc_func zalloc; /* used to allocate 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
143 zalloc must return Z_NULL if there is not enough memory for the object.
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
150 returned by zalloc for objects of exactly 65536 bytes *must* have their
208 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */
227 zalloc, zfre
[all...]

Completed in 77 milliseconds