Home
last modified time | relevance | path

Searched refs:ZALLOC (Results 1 - 25 of 29) sorted by relevance

12

/third_party/skia/third_party/externals/freetype/src/gzip/
H A 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()
H A 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()
H A Dzutil.h210 #define ZALLOC(strm, items, size) \ macro
H A Dinfcodes.c67 ZALLOC(z,1,sizeof(struct inflate_codes_state))) != Z_NULL) in inflate_codes_new()
H A Dinflate.c103 ZALLOC(z,1,sizeof(struct internal_state))) == Z_NULL) in inflateInit2_()
/third_party/node/deps/zlib/
H A Ddeflate.c453 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); in deflateInit2_()
479 s->window = (Bytef *) ZALLOC(strm, in deflateInit2_()
485 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); in deflateInit2_()
490 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); in deflateInit2_()
535 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 5); in deflateInit2_()
537 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4); in deflateInit2_()
1339 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); in deflateCopy()
1345 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy()
1346 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); in deflateCopy()
1347 ds->head = (Posf *) ZALLOC(des in deflateCopy()
[all...]
H A Dzutil.h281 #define ZALLOC(strm, items, size) \ macro
H A Dinflate.c203 ZALLOC(strm, 1, sizeof(struct inflate_state)); in inflateInit2_()
378 ZALLOC(strm, 1U << state->wbits, in updatewindow()
1454 ZALLOC(source, 1, sizeof(struct inflate_state));
1459 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
H A Dinfback.c51 state = (struct inflate_state FAR *)ZALLOC(strm, 1, in inflateBackInit_()
/third_party/libwebsockets/win32port/zlib/
H A Ddeflate.c260 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
276 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
277 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
278 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
323 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
998 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1004 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1005 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1006 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1007 ds->pending_buf = (uchf *) ZALLOC(des
[all...]
H A 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));
H A Dzutil.h269 #define ZALLOC(strm, items, size) \ macro
/third_party/node/deps/v8/third_party/zlib/
H A Ddeflate.c305 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state));
326 s->window = (Bytef *) ZALLOC(strm,
332 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
337 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
381 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, 4);
1176 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state));
1182 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1183 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1184 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1185 ds->pending_buf = (uchf *) ZALLOC(des
[all...]
H A Dzutil.h269 #define ZALLOC(strm, items, size) \ macro
H A Dinflate.c225 ZALLOC(strm, 1, sizeof(struct inflate_state));
411 ZALLOC(strm, 1U << state->wbits,
1487 ZALLOC(source, 1, sizeof(struct inflate_state));
1492 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
H A Dinfback.c58 state = (struct inflate_state FAR *)ZALLOC(strm, 1,
/third_party/skia/third_party/externals/zlib/
H A 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(des
[all...]
H A Dzutil.h277 #define ZALLOC(strm, items, size) \ macro
H A 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/zlib/
H A Ddeflate.c435 s = (deflate_state *) ZALLOC(strm, 1, sizeof(deflate_state)); in deflateInit2_()
452 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte)); in deflateInit2_()
453 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos)); in deflateInit2_()
454 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos)); in deflateInit2_()
499 s->pending_buf = (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS); in deflateInit2_()
1308 ds = (deflate_state *) ZALLOC(dest, 1, sizeof(deflate_state)); in deflateCopy()
1314 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte)); in deflateCopy()
1315 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos)); in deflateCopy()
1316 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos)); in deflateCopy()
1317 ds->pending_buf = (uchf *) ZALLOC(des in deflateCopy()
[all...]
H A Dzutil.h245 #define ZALLOC(strm, items, size) \ macro
H A Dinflate.c204 ZALLOC(strm, 1, sizeof(struct inflate_state)); in inflateInit2_()
390 ZALLOC(strm, 1U << state->wbits, in updatewindow()
1617 ZALLOC(source, 1, sizeof(struct inflate_state));
1625 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
H A Dinflate.c226 ZALLOC(strm, 1, sizeof(struct inflate_state));
413 ZALLOC(strm, wsize + CHUNKCOPY_CHUNK_SIZE,
1507 ZALLOC(source, 1, sizeof(struct inflate_state));
1512 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));
/third_party/node/deps/zlib/contrib/optimizations/
H A Dinflate.c204 ZALLOC(strm, 1, sizeof(struct inflate_state)); in inflateInit2_()
380 ZALLOC(strm, wsize + CHUNKCOPY_CHUNK_SIZE, in updatewindow()
1487 ZALLOC(source, 1, sizeof(struct inflate_state));
1491 window = (unsigned char FAR *)ZALLOC(
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinflate.c225 ZALLOC(strm, 1, sizeof(struct inflate_state));
412 ZALLOC(strm, wsize + CHUNKCOPY_CHUNK_SIZE,
1500 ZALLOC(source, 1, sizeof(struct inflate_state));
1505 ZALLOC(source, 1U << state->wbits, sizeof(unsigned char));

Completed in 29 milliseconds

12