Searched refs:ZALLOC (Results 1 – 6 of 6) sorted by relevance
/toolchain/binutils/binutils-2.27/zlib/ |
D | deflate.c | 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); 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);
|
D | zutil.h | 244 #define ZALLOC(strm, items, size) \ macro
|
D | inflate.c | 209 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));
|
D | infback.c | 58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|
D | ChangeLog | 1100 . 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/ |
D | infback9.c | 38 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
|