/external/chromium_org/third_party/zlib/ |
uncompr.c | 43 stream.zfree = (free_func)0;
|
compress.c | 43 stream.zfree = (free_func)0;
|
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 48 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 626 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 628 ZFREE(strm, strm->state);
|
zutil.h | 286 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 287 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
inflate.c | 158 ZFREE(strm, state->window); 186 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 195 ZFREE(strm, state); [all...] |
gzread.c | 128 state->strm.zfree = Z_NULL;
|
zlib.h | 98 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s 99 voidpf opaque; /* private data object passed to zalloc and zfree */ 135 to zero. The application must initialize zalloc, zfree and opaque before 140 parameter for calls of zalloc and zfree. This can be useful for custom 145 If zlib is used in a multi-threaded application, zalloc and zfree must be 148 On 16-bit systems, the functions zalloc and zfree must be able to allocate 209 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 232 zalloc, zfree and opaque must be initialized before by the caller. If 233 zalloc and zfree are set to Z_NULL, deflateInit updates them to use default 375 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
deflate.c | 242 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 363 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { 368 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */ [all...] |
gzwrite.c | 35 strm->zfree = Z_NULL;
|
/external/chromium_org/components/metrics/ |
compression_utils.cc | 45 stream.zfree = static_cast<free_func>(0); 94 stream.zfree = static_cast<free_func>(0);
|
/external/freetype/src/gzip/ |
zlib.h | 81 free_func zfree; /* used to free the internal state */ member in struct:z_stream_s 82 voidpf opaque; /* private data object passed to zalloc and zfree */ 94 has dropped to zero. The application must initialize zalloc, zfree and 99 parameter for calls of zalloc and zfree. This can be useful for custom 104 If zlib is used in a multi-threaded application, zalloc and zfree must be 107 On 16-bit systems, the functions zalloc and zfree must be able to allocate 164 #define Z_NULL 0 /* for initializing zalloc, zfree, opaque */ 179 zalloc, zfree and opaque must be initialized before by the caller. 180 If zalloc and zfree are set to Z_NULL, deflateInit updates them to 292 next_in, avail_in, zalloc, zfree and opaque must be initialized before b [all...] |
inflate.c | 71 if (z == Z_NULL || z->state == Z_NULL || z->zfree == Z_NULL) 75 ZFREE(z, z->state); 101 if (z->zfree == Z_NULL) z->zfree = zcfree;
|
ftgzip.c | 63 #define MY_ZCALLOC /* prevent all zcalloc() & zfree() in zutils.c */ 302 zstream->zfree = (free_func) ft_gzip_free; 327 zstream->zfree = NULL; 712 stream.zfree = (free_func) ft_gzip_free;
|
zutil.h | 212 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 213 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
/external/chromium_org/third_party/skia/src/core/ |
SkFlate.cpp | 43 flateData.zfree = NULL;
|
/bootable/recovery/applypatch/ |
imgpatch.c | 143 strm.zfree = Z_NULL; 204 strm.zfree = Z_NULL;
|
imgdiff.c | 318 strm.zfree = Z_NULL; 443 strm.zfree = Z_NULL; 540 strm.zfree = Z_NULL; [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 53 zcontext_.zfree = Z_NULL; 213 zcontext_.zfree = Z_NULL;
|
/external/openssl/crypto/comp/ |
c_zlib.c | 149 state->istream.zfree = zlib_zfree; 161 state->ostream.zfree = zlib_zfree; 321 stream.zfree = (free_func)0; 493 ctx->zin.zfree = Z_NULL; 499 ctx->zout.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_org/sdch/open-vcdiff/src/zlib/ |
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_org/chrome/installer/mac/third_party/bsdiff/ |
goobsdiff.c | 220 stream.zfree = (free_func)0;
|
/external/chromium_org/third_party/libpng/ |
pngread.c | 161 png_ptr->zstream.zfree = png_zfree; 326 png_ptr->zstream.zfree = png_zfree; [all...] |
/external/chromium_org/third_party/zlib/contrib/minizip/ |
unzip.c | [all...] |
/bootable/recovery/minzip/ |
Zip.c | 526 zstream.zfree = Z_NULL; [all...] |