/src/common/dist/zlib/test/ |
example.c | 49 static alloc_func zalloc = myalloc; variable in typeref:typename:alloc_func 54 static alloc_func zalloc = (alloc_func)0; variable in typeref:typename:alloc_func 171 c_stream.zalloc = zalloc; 208 d_stream.zalloc = zalloc; 245 c_stream.zalloc = zalloc; 300 d_stream.zalloc = zalloc; [all...] |
/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
DotZLib.cs | 44 uint zalloc;
field in struct:DotZLib.ZStream
|
/src/sys/net/ |
ppp-deflate.c | 76 static void *zalloc(void *, u_int items, u_int size); 134 zalloc(void *notused, u_int items, u_int size) function in typeref:typename:void * 172 state->strm.zalloc = zalloc; 390 state->strm.zalloc = zalloc;
|
zlib.h | 374 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s 376 voidpf opaque; /* private data object passed to zalloc and zfree */ 388 has dropped to zero. The application must initialize zalloc, zfree and 393 parameter for calls of zalloc and zfree. This can be useful for custom 397 zalloc must return Z_NULL if there is not enough memory for the object. 398 If zlib is used in a multi-threaded application, zalloc and zfree must be 401 On 16-bit systems, the functions zalloc and zfree must be able to allocate 404 pointers returned by zalloc for objects of exactly 65536 bytes *must* 459 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 477 zalloc, zfree and opaque must be initialized before by the caller [all...] |
/src/common/dist/zlib/ |
zlib.h | 100 alloc_func zalloc; /* used to allocate the internal state */ member in struct:z_stream_s 102 voidpf opaque; /* private data object passed to zalloc and zfree */ 138 to zero. The application must initialize zalloc, zfree and opaque before 143 parameter for calls of zalloc and zfree. This can be useful for custom 147 zalloc must return Z_NULL if there is not enough memory for the object. 148 If zlib is used in a multi-threaded application, zalloc and zfree must be 149 thread safe. In that case, zlib is thread-safe. When zalloc and zfree are 153 On 16-bit systems, the functions zalloc and zfree must be able to allocate 156 returned by zalloc for objects of exactly 65536 bytes *must* have their 214 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque * [all...] |