/external/chromium_org/third_party/zlib/ |
deflate.c | 238 if (strm->zalloc == (alloc_func)0) { 239 strm->zalloc = zcalloc; 266 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); 282 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 283 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 284 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 293 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 363 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { 829 s->class_bitmap = (Bytef*) ZALLOC(strm, s->w_size/4, sizeof(Byte)); [all...] |
zutil.h | 284 #define ZALLOC(strm, items, size) \ 285 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
inflate.c | 182 if (strm->zalloc == (alloc_func)0) { 183 strm->zalloc = zcalloc; 188 ZALLOC(strm, 1, sizeof(struct inflate_state)); 370 ZALLOC(strm, 1U << state->wbits, [all...] |
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 44 if (strm->zalloc == (alloc_func)0) { 45 strm->zalloc = zcalloc; 49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|
/external/qemu/distrib/zlib-1.2.3/ |
deflate.c | 243 if (strm->zalloc == (alloc_func)0) { 244 strm->zalloc = zcalloc; 271 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); 287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 288 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 289 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 293 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 363 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { 914 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); 920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)) [all...] |
zutil.h | 264 #define ZALLOC(strm, items, size) \ 265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
inflate.c | 157 if (strm->zalloc == (alloc_func)0) { 158 strm->zalloc = zcalloc; 163 ZALLOC(strm, 1, sizeof(struct inflate_state)); 335 ZALLOC(strm, 1U << state->wbits, [all...] |
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 44 if (strm->zalloc == (alloc_func)0) { 45 strm->zalloc = zcalloc; 49 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|
/external/zlib/src/ |
deflate.c | 240 if (strm->zalloc == (alloc_func)0) { 244 strm->zalloc = zcalloc; 277 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); 293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 295 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 301 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 398 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) { [all...] |
zutil.h | 244 #define ZALLOC(strm, items, size) \ 245 (*((strm)->zalloc))((strm)->opaque, (items), (size))
|
inflate.c | 194 if (strm->zalloc == (alloc_func)0) { 198 strm->zalloc = zcalloc; 209 ZALLOC(strm, 1, sizeof(struct inflate_state)); 392 ZALLOC(strm, 1U << state->wbits, [all...] |
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 44 if (strm->zalloc == (alloc_func)0) { 48 strm->zalloc = zcalloc; 58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|
/external/zlib/src/contrib/infback9/ |
infback9.c | 14 strm provides memory allocation functions in zalloc and zfree, or 33 if (strm->zalloc == (alloc_func)0) { 34 strm->zalloc = zcalloc; 38 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|