Home
last modified time | relevance | path

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

/toolchain/binutils/binutils-2.27/zlib/
Ddeflate.c277 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);
1034 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1041 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1042 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1043 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
Dzutil.h244 #define ZALLOC(strm, items, size) \ macro
Dinflate.c209 ZALLOC(strm, 1, sizeof(struct inflate_state));
392 ZALLOC(strm, 1U << state->wbits,
1455 ZALLOC(source, 1, sizeof(struct inflate_state));
1460 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
Dinfback.c58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
DChangeLog1100 . Replace ZALLOC's in huft_build() with single ZALLOC in inflate_blocks_new()
1101 . ZALLOC the length list in inflate_trees_fixed() instead of using stack
1102 . ZALLOC the value area for huft_build() instead of using stack
/toolchain/binutils/binutils-2.27/zlib/contrib/infback9/
Dinfback9.c38 state = (struct inflate_state FAR *)ZALLOC(strm, 1,