/external/chromium_org/third_party/zlib/ |
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...] |
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);
|
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...] |
/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);}
|
inflate.c | 161 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 178 ZFREE(strm, state); [all...] |
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 48 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 617 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 619 ZFREE(strm, strm->state);
|
deflate.c | 247 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 */ 883 ZFREE(strm, strm->state); [all...] |
/external/zlib/src/ |
zutil.h | 246 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 247 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
inflate.c | 170 ZFREE(strm, state->window); 202 if (strm->zfree == (free_func)0) 206 strm->zfree = zcfree; 216 ZFREE(strm, state); [all...] |
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 52 if (strm->zfree == (free_func)0) 56 strm->zfree = zcfree; 634 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 636 ZFREE(strm, strm->state);
|
deflate.c | 248 if (strm->zfree == (free_func)0) 252 strm->zfree = zcfree; 398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { 403 strm->msg = Z_NULL; /* use zfree if we ever allocate msg dynamically */ [all...] |
/external/zlib/src/contrib/infback9/ |
infback9.c | 14 strm provides memory allocation functions in zalloc and zfree, or 37 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 609 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 611 ZFREE(strm, strm->state);
|