/external/zlib/test/ |
example.c | 73 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...] |
/external/qemu/distrib/zlib-1.2.3/ |
zutil.h | 266 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 267 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
uncompr.c | 45 stream.zfree = (free_func)0;
|
compress.c | 43 stream.zfree = (free_func)0;
|
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/external/zlib/ |
zutil.h | 245 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 246 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
uncompr.c | 43 stream.zfree = (free_func)0;
|
compress.c | 43 stream.zfree = (free_func)0;
|
/external/zlib/old/ |
zlib.html | 371 <a href="#zalloc">zalloc</a>, <a href="#zfree">zfree</a> and <a href="#opaque">opaque</a> must be initialized before by the caller. 372 If <a href="#zalloc">zalloc</a> and <a href="#zfree">zfree</a> are set to <a href="#Z_NULL">Z_NULL</a>, <a href="#deflateInit">deflateInit</a> updates them to 498 <a href="#next_in">next_in</a>, <a href="#avail_in">avail_in</a>, <a href="#zalloc">zalloc</a>, <a href="#zfree">zfree</a> and <a href="#opaque">opaque</a> must be initialized before by 503 <a href="#inflate">inflate</a>. If <a href="#zalloc">zalloc</a> and <a href="#zfree">zfree</a> are set to <a href="#Z_NULL">Z_NULL</a>, <a href="#inflateInit">inflateInit</a> updates them to [all...] |
/external/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;
|
/libcore/luni/src/main/native/ |
zip.h | 46 stream.zfree = Z_NULL;
|
/external/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;
|
/external/zlib/examples/ |
zpipe.c | 46 strm.zfree = Z_NULL; 102 strm.zfree = Z_NULL;
|
/external/kernel-headers/original/linux/ |
zlib.h | 108 has dropped to zero. The application must initialize zalloc, zfree and 113 parameter for calls of zalloc and zfree. This can be useful for custom 118 If zlib is used in a multi-threaded application, zalloc and zfree must be 121 On 16-bit systems, the functions zalloc and zfree must be able to allocate 193 zalloc, zfree and opaque must be initialized before by the caller. 194 If zalloc and zfree are set to NULL, deflateInit updates them to 320 inflate. If zalloc and zfree are set to NULL, inflateInit updates them to 457 fields next_in, zalloc, zfree and opaque must be initialized before by 591 fields next_in, avail_in, zalloc, zfree and opaque must be initialized [all...] |
/external/skia/src/core/ |
SkFlate.cpp | 39 flateData.zfree = NULL;
|
/external/zlib/contrib/ada/ |
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
|
/system/core/libzipfile/ |
zipfile.c | 88 zstream.zfree = Z_NULL;
|
/bootable/recovery/applypatch/ |
imgpatch.c | 135 strm.zfree = Z_NULL; 190 strm.zfree = Z_NULL;
|
/system/extras/tests/bionic/libc/other/ |
test_zlib.c | 55 strm.zfree = Z_NULL; 103 strm.zfree = Z_NULL;
|
/development/ndk/platforms/android-3/include/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/ |
zlib.h | 95 free_func zfree; /* used to free 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 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 205 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 223 zalloc, zfree and opaque must be initialized before by the caller. 224 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 346 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |