Home
last modified time | relevance | path

Searched refs:ZALLOC (Results 1 – 5 of 5) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.c307 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
324 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
325 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
326 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
332 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
1125 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1131 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1132 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1133 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1134 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
H A Dzutil.h265 #define ZALLOC(strm, items, size) \ macro
H A Dinflate.c224 ZALLOC(strm, 1, sizeof(struct inflate_state));
409 ZALLOC(strm, 1U << state->wbits,
1477 ZALLOC(source, 1, sizeof(struct inflate_state));
1482 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
H A Dinfback.c58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
H A DChangeLog1143 . Replace ZALLOC's in huft_build() with single ZALLOC in inflate_blocks_new()
1144 . ZALLOC the length list in inflate_trees_fixed() instead of using stack
1145 . ZALLOC the value area for huft_build() instead of using stack