HomeSort by relevance Sort by last modified time
    Searched refs:ZALLOC (Results 1 - 9 of 9) sorted by null

  /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/
deflate.c 237 if (strm->zalloc == (alloc_func)0) {
238 strm->zalloc = zcalloc;
265 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
281 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
282 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
283 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
289 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
359 strm->zalloc == (alloc_func)0 || strm->zfree == (free_func)0) {
    [all...]
zutil.h 269 #define ZALLOC(strm, items, size) \
270 (*((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/zlib/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,

Completed in 206 milliseconds