/src/common/dist/zlib/test/ |
example.c | 50 static free_func zfree = myfree; variable in typeref:typename:free_func 55 static free_func zfree = (free_func)0; variable in typeref:typename:free_func 172 c_stream.zfree = zfree; 209 d_stream.zfree = zfree; 246 c_stream.zfree = zfree; 301 d_stream.zfree = zfree; [all...] |
infcover.c | 34 zalloc, zfree, and opaque members of strm to use 172 strm->zfree = mem_free; 233 strm->zfree = Z_NULL;
|
/src/common/dist/zlib/ |
compress.c | 35 stream.zfree = (free_func)0;
|
uncompr.c | 50 stream.zfree = (free_func)0;
|
infback.c | 21 strm provides memory allocation functions in zalloc and zfree, or 47 if (strm->zfree == (free_func)0) 51 strm->zfree = zcfree; 624 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 626 ZFREE(strm, strm->state);
|
zutil.h | 261 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 262 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
inflate.c | 99 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) 170 ZFREE(strm, state->window); 198 if (strm->zfree == (free_func)0) 202 strm->zfree = zcfree; 214 ZFREE(strm, state); 1280 if (state->window != Z_NULL) ZFREE(strm, state->window); 1281 ZFREE(strm, strm->state); 1468 ZFREE(source, copy);
|
/src/common/dist/zlib/examples/ |
zpipe.c | 46 strm.zfree = Z_NULL; 102 strm.zfree = Z_NULL;
|
fitblk.c | 149 def.zfree = Z_NULL; 181 inf.zfree = Z_NULL;
|
gznorm.c | 90 strm.zfree = Z_NULL;
|
gzjoin.c | 301 strm.zfree = Z_NULL;
|
/src/tests/crypto/opencrypto/ |
h_comp_zlib.c | 75 z.zfree = Z_NULL;
|
h_comp_zlib_rnd.c | 79 z.zfree = Z_NULL;
|
/src/sys/net/ |
ppp-deflate.c | 77 static void zfree(void *, void *ptr); 143 zfree(void *notused, void *ptr) function in typeref:typename:void 173 state->strm.zfree = zfree; 391 state->strm.zfree = zfree;
|
zlib.h | 375 free_func zfree; /* used to free 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 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 459 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 477 zalloc, zfree and opaque must be initialized before by the caller. 478 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 599 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/src/common/dist/zlib/contrib/pascal/ |
example.pas | 192 c_stream.zfree := NIL; 237 d_stream.zfree := NIL; 278 c_stream.zfree := NIL; 332 d_stream.zfree := NIL; 376 c_stream.zfree := NIL; 415 d_stream.zfree := NIL; 455 c_stream.zfree := NIL; 492 d_stream.zfree := NIL;
|
zlibpas.pas | 41 zfree: free_func; (* used to free the internal state *) 42 opaque: Pointer; (* private data object passed to zalloc and zfree *)
|
/src/common/dist/zlib/contrib/ada/ |
zlib-thin.adb | 107 Strm.zfree := Free;
|
zlib-thin.ads | 107 -- for initializing zalloc, zfree, opaque 310 -- has dropped to zero. The application must initialize zalloc, zfree and 375 zfree : free_func := null; -- used to free the internal state 377 -- zalloc and zfree
|
/src/common/dist/zlib/contrib/delphi/ |
ZLib.pas | 36 zfree: TFree; // used to free the internal state 37 AppData: Pointer; // private data object passed to zalloc and zfree 294 strm.zfree := zlibFreeMem; 333 strm.zfree := zlibFreeMem; 373 strm.zfree := zlibFreeMem; 395 FZRec.zfree := zlibFreeMem;
|
/src/common/dist/zlib/contrib/infback9/ |
infback9.c | 14 strm provides memory allocation functions in zalloc and zfree, or 33 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 597 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 599 ZFREE(strm, strm->state);
|
/src/common/dist/zlib/contrib/dotzlib/DotZLib/ |
DotZLib.cs | 45 uint zfree;
field in struct:DotZLib.ZStream
|
/src/sys/kern/ |
kern_ctf.c | 206 zs.zfree = z_free;
|
/src/sys/opencrypto/ |
deflate.c | 96 zbuf.zfree = ocf_zfree; 243 zbuf.zfree = ocf_zfree;
|
/src/sys/netinet/ |
sctputil.h | 123 zfree(zone, element);
|