Home
last modified time | relevance | path

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

12

/third_party/skia/third_party/externals/zlib/patches/
D0003-uninitializedjump.patch8 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
13 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
D0007-zero-init-deflate-window.patch29 s->window = (Bytef *) ZALLOC(strm,
35 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
/third_party/skia/third_party/externals/freetype/src/gzip/
Dinftrees.c311 if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL) in inflate_trees_bits()
344 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_dynamic()
427 if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_fixed()
429 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_fixed()
Dinfblock.c95 if ((s = (inflate_blocks_statef *)ZALLOC in inflate_blocks_new()
99 (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL) in inflate_blocks_new()
104 if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL) in inflate_blocks_new()
229 if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL) in inflate_blocks()
Dzutil.h210 #define ZALLOC(strm, items, size) \ macro
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/
Dinftrees.c311 if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL) in inflate_trees_bits()
344 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_dynamic()
427 if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_fixed()
429 if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL) in inflate_trees_fixed()
Dinfblock.c95 if ((s = (inflate_blocks_statef *)ZALLOC in inflate_blocks_new()
99 (inflate_huft *)ZALLOC(z, sizeof(inflate_huft), MANY)) == Z_NULL) in inflate_blocks_new()
104 if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL) in inflate_blocks_new()
229 if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL) in inflate_blocks()
Dzutil.h210 #define ZALLOC(strm, items, size) \ macro
/third_party/libwebsockets/win32port/zlib/
Ddeflate.c265 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);
962 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
968 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
969 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
970 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
971 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
Dzutil.h269 #define ZALLOC(strm, items, size) \ macro
Dinflate.c188 ZALLOC(strm, 1, sizeof(struct inflate_state));
370 ZALLOC(strm, 1U << state->wbits,
1423 ZALLOC(source, 1, sizeof(struct inflate_state));
1428 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/skia/third_party/externals/zlib/
Ddeflate.c300 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
321 s->window = (Bytef *) ZALLOC(strm,
327 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
332 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
376 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
1168 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1174 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1175 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1176 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1177 ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
Dzutil.h277 #define ZALLOC(strm, items, size) \ macro
Dinflate.c224 ZALLOC(strm, 1, sizeof(struct inflate_state));
410 ZALLOC(strm, 1U << state->wbits,
1480 ZALLOC(source, 1, sizeof(struct inflate_state));
1485 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/node/deps/zlib/
Ddeflate.c297 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
319 s->window = (Bytef *) ZALLOC(strm,
322 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
323 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
367 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
1159 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1165 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1166 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1167 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1168 ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
Dzutil.h277 #define ZALLOC(strm, items, size) \ macro
Dinflate.c224 ZALLOC(strm, 1, sizeof(struct inflate_state));
410 ZALLOC(strm, 1U << state->wbits,
1479 ZALLOC(source, 1, sizeof(struct inflate_state));
1484 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/zlib/
Ddeflate.c302 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
319 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
320 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
321 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
366 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
1164 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1170 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1171 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1172 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1173 ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
Dzutil.h265 #define ZALLOC(strm, items, size) \ macro
Dinflate.c225 ZALLOC(strm, 1, sizeof(struct inflate_state));
410 ZALLOC(strm, 1U << state->wbits,
1509 ZALLOC(source, 1, sizeof(struct inflate_state));
1514 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/flutter/skia/third_party/externals/zlib/
Ddeflate.c346 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
368 s->window = (Bytef *) ZALLOC(strm,
371 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
372 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
416 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
1208 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1214 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1215 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1216 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1217 ds->pending_buf = (uchf *) ZALLOC(dest, ds->lit_bufsize, 4);
Dzutil.h277 #define ZALLOC(strm, items, size) \ macro
/third_party/freetype/src/gzip/
Dzutil.h269 #define ZALLOC(strm, items, size) \ macro
Dinflate.c227 ZALLOC(strm, 1, sizeof(struct inflate_state)); in inflateInit2_()
416 ZALLOC(strm, 1U << state->wbits, in updatewindow()
1521 ZALLOC(source, 1, sizeof(struct inflate_state)); in inflateCopy()
1526 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char)); in inflateCopy()
/third_party/flutter/skia/third_party/externals/zlib/contrib/optimizations/
Dinflate.c225 ZALLOC(strm, 1, sizeof(struct inflate_state));
412 ZALLOC(strm, wsize + CHUNKCOPY_CHUNK_SIZE,
1499 ZALLOC(source, 1, sizeof(struct inflate_state));
1504 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));

12