Lines Matching refs:ZALLOC
266 #define ZALLOC(strm, items, size) \ macro
900 s = (deflate_state *) ZALLOC(strm, 1, sizeof (deflate_state));
916 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof (Byte));
917 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof (Pos));
918 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof (Pos));
922 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof (ush)+2);
1321 ds = (deflate_state *) ZALLOC(dest, 1, sizeof (deflate_state));
1328 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof (Byte));
1329 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof (Pos));
1330 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof (Pos));
1331 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof (ush)+2);
3686 ZALLOC(z, 1, sizeof (struct internal_state))) == Z_NULL)
4326 if ((s = (inflate_blocks_statef *)ZALLOC
4329 s->hufts = (inflate_huft *)ZALLOC(z, MANY, sizeof (inflate_huft));
4334 if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
4467 if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t,
5181 if ((c = (uIntf*)ZALLOC(z, 288, sizeof (uInt))) == Z_NULL)
5183 if ((v = (uIntf*)ZALLOC(z, 288, sizeof (uInt))) == Z_NULL)
5311 ZALLOC(z, 1, sizeof (struct inflate_codes_state))) != Z_NULL)