/third_party/skia/third_party/externals/zlib/patches/ |
D | 0003-uninitializedjump.patch | 8 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 13 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
|
D | 0007-zero-init-deflate-window.patch | 29 s->window = (Bytef *) ZALLOC(strm, 35 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
|
/third_party/flutter/skia/third_party/externals/freetype/src/gzip/ |
D | inftrees.c | 311 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()
|
D | infblock.c | 95 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()
|
D | zutil.h | 210 #define ZALLOC(strm, items, size) \ macro
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
D | inftrees.c | 311 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()
|
D | infblock.c | 95 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()
|
D | zutil.h | 210 #define ZALLOC(strm, items, size) \ macro
|
/third_party/freetype/src/gzip/ |
D | inftrees.c | 311 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()
|
D | infblock.c | 95 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()
|
D | zutil.h | 210 #define ZALLOC(strm, items, size) \ macro
|
/third_party/libwebsockets/win32port/zlib/ |
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); 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);
|
D | zutil.h | 269 #define ZALLOC(strm, items, size) \ macro
|
/third_party/zlib/ |
D | deflate.c | 302 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);
|
D | zutil.h | 265 #define ZALLOC(strm, items, size) \ macro
|
/third_party/node/deps/zlib/ |
D | deflate.c | 297 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);
|
D | zutil.h | 277 #define ZALLOC(strm, items, size) \ macro
|
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/ |
D | deflate.c | 304 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); 321 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 322 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 323 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 329 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 1122 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); 1128 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 1129 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); 1130 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); 1131 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
|
D | zutil.h | 262 #define ZALLOC(strm, items, size) \ macro
|
/third_party/skia/third_party/externals/zlib/ |
D | deflate.c | 300 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);
|
D | zutil.h | 277 #define ZALLOC(strm, items, size) \ macro
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/ |
D | deflate.c | 304 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); 321 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); 322 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); 323 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); 329 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2); 1122 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); 1128 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); 1129 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); 1130 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); 1131 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
|
D | zutil.h | 262 #define ZALLOC(strm, items, size) \ macro
|
/third_party/flutter/skia/third_party/externals/zlib/ |
D | deflate.c | 346 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);
|
D | zutil.h | 277 #define ZALLOC(strm, items, size) \ macro
|