Searched refs:ZALLOC (Results 1 – 4 of 4) sorted by relevance
| /OK3568_Linux_fs/yocto/poky/meta/recipes-core/zlib/zlib/ |
| H A D | CVE-2018-25032.patch | 55 - overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 97 + s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4); 135 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 136 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); 137 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); 138 - overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2); 140 + ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
|
| /OK3568_Linux_fs/u-boot/lib/zlib/ |
| H A D | deflate.c | 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); 948 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); 954 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 955 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); 956 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); 957 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
|
| H A D | zutil.h | 121 #define ZALLOC(strm, items, size) \ macro
|
| H A D | inflate.c | 49 ZALLOC(strm, 1, sizeof(struct inflate_state)); in inflateInit2_() 110 ZALLOC(strm, 1U << state->wbits, in updatewindow()
|