/third_party/zlib/test/ |
D | example.c | 72 static alloc_func zalloc = myalloc; variable 77 static alloc_func zalloc = (alloc_func)0; variable 208 c_stream.zalloc = zalloc; 247 d_stream.zalloc = zalloc; 286 c_stream.zalloc = zalloc; 343 d_stream.zalloc = zalloc; 383 c_stream.zalloc = zalloc; 422 d_stream.zalloc = zalloc; 463 c_stream.zalloc = zalloc; 502 d_stream.zalloc = zalloc;
|
/third_party/node/deps/v8/third_party/zlib/google/ |
D | compression_utils_portable.cc | 112 auto zalloc = [](void* opaque, uInt items, uInt size) { in CompressHelper() local 120 stream.zalloc = static_cast<alloc_func>(zalloc); in CompressHelper() 124 stream.zalloc = static_cast<alloc_func>(0); in CompressHelper() 185 stream.zalloc = static_cast<alloc_func>(0); in UncompressHelper()
|
/third_party/node/deps/zlib/google/ |
D | compression_utils_portable.cc | 112 auto zalloc = [](void* opaque, uInt items, uInt size) { in CompressHelper() local 120 stream.zalloc = static_cast<alloc_func>(zalloc); in CompressHelper() 124 stream.zalloc = static_cast<alloc_func>(0); in CompressHelper() 185 stream.zalloc = static_cast<alloc_func>(0); in UncompressHelper()
|
/third_party/skia/third_party/externals/zlib/google/ |
D | compression_utils_portable.cc | 112 auto zalloc = [](void* opaque, uInt items, uInt size) { in CompressHelper() local 120 stream.zalloc = static_cast<alloc_func>(zalloc); in CompressHelper() 124 stream.zalloc = static_cast<alloc_func>(0); in CompressHelper() 185 stream.zalloc = static_cast<alloc_func>(0); in UncompressHelper()
|
/third_party/zlib/contrib/pascal/ |
D | example.pas | 191 c_stream.zalloc := NIL; 236 d_stream.zalloc := NIL; 277 c_stream.zalloc := NIL; 331 d_stream.zalloc := NIL; 375 c_stream.zalloc := NIL; 414 d_stream.zalloc := NIL; 454 c_stream.zalloc := NIL; 491 d_stream.zalloc := NIL;
|
/third_party/skia/third_party/externals/zlib/contrib/tests/ |
D | utils_unittest.cc | 106 comp_strm.zalloc = Z_NULL; in TEST() 120 decomp_strm.zalloc = Z_NULL; in TEST() 180 stream.zalloc = nullptr; in TEST() 251 stream.zalloc = nullptr; in TEST() 378 stream.zalloc = nullptr; in TEST() 500 stream.zalloc = Z_NULL; in TEST()
|
/third_party/libinput/src/ |
D | util-strings.c | 79 strv = zalloc((argc + 1) * sizeof *strv); in strv_from_argv() 121 strv = zalloc(nelems * sizeof *strv); in strv_from_string() 178 str = zalloc(slen + 1); /* trailing \0 */ in strv_join()
|
D | libinput.c | 1820 source = zalloc(sizeof *source); in libinput_add_fd() 1860 libinput->events = zalloc(libinput->events_len * sizeof(*libinput->events)); in libinput_init() 2336 added_device_event = zalloc(sizeof *added_device_event); in notify_added_device() 2354 removed_device_event = zalloc(sizeof *removed_device_event); in notify_removed_device() 2420 key_event = zalloc(sizeof *key_event); in keyboard_notify_key() 2447 motion_event = zalloc(sizeof *motion_event); in pointer_notify_motion() 2470 motion_absolute_event = zalloc(sizeof *motion_absolute_event); in pointer_notify_motion_absolute() 2494 button_event = zalloc(sizeof *button_event); in pointer_notify_button() 2525 axis_event = zalloc(sizeof *axis_event); in pointer_notify_axis_finger() 2526 axis_event_legacy = zalloc(sizeof *axis_event_legacy); in pointer_notify_axis_finger() [all …]
|
D | util-strings.h | 67 zalloc(size_t size) in zalloc() function 314 result = zalloc(npairs * sizeof *result); in kv_double_from_string() 418 char *sanitized = zalloc(2 * slen + 1); in str_sanitize()
|
D | filter-trackpoint.c | 203 filter = zalloc(sizeof *filter); in create_pointer_accelerator_filter_trackpoint() 213 smoothener = zalloc(sizeof(*smoothener)); in create_pointer_accelerator_filter_trackpoint()
|
D | path-seat.c | 97 seat = zalloc(sizeof(*seat)); in path_seat_create() 262 dev = zalloc(sizeof *dev); in path_create_device() 315 input = zalloc(sizeof *input); in libinput_path_create_context()
|
D | filter-touchpad.c | 334 filter = zalloc(sizeof *filter); in create_pointer_accelerator_filter_touchpad() 345 smoothener = zalloc(sizeof(*smoothener)); in create_pointer_accelerator_filter_touchpad()
|
/third_party/ffmpeg/libavcodec/ |
D | zlib_wrapper.c | 49 zstream->zalloc = alloc_wrapper; in ff_inflate_init() 80 zstream->zalloc = alloc_wrapper; in ff_deflate_init()
|
/third_party/NuttX/fs/mount/ |
D | fs_mount.c | 237 struct Mount *newMnt = (struct Mount *)zalloc(sizeof(struct Mount)); in mount() 272 partition->mountpoint_name = (char *)zalloc(strlen(target) + 1); in mount() 351 struct Mount *newMnt = (struct Mount *)zalloc(sizeof(struct Mount)); in mount()
|
/third_party/zlib/contrib/delphi/ |
D | ZLib.pas | 35 zalloc: TAlloc; // used to allocate the internal state 293 strm.zalloc := zlibAllocMem; 332 strm.zalloc := zlibAllocMem; 372 strm.zalloc := zlibAllocMem; 394 FZRec.zalloc := zlibAllocMem;
|
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/ |
D | streaming_inflate_fuzzer.cc | 25 comp_strm.zalloc = Z_NULL; in LLVMFuzzerTestOneInput() 44 decomp_strm.zalloc = Z_NULL; in LLVMFuzzerTestOneInput()
|
/third_party/mesa3d/src/util/ |
D | compress.c | 89 strm.zalloc = Z_NULL; in util_compress_deflate() 134 strm.zalloc = Z_NULL; in util_compress_inflate()
|
/third_party/zlib/examples/ |
D | zpipe.c | 45 strm.zalloc = Z_NULL; in def() 101 strm.zalloc = Z_NULL; in inf()
|
D | fitblk.c | 148 def.zalloc = Z_NULL; in main() 180 inf.zalloc = Z_NULL; in main()
|
/third_party/libinput/test/ |
D | litest-selftest.c | 353 zalloc((size_t)-1); in START_TEST() 360 free(zalloc(1536 * 1024)); in START_TEST() 366 zalloc(1536 * 1024 + 1); in START_TEST()
|
/third_party/skia/third_party/externals/microhttpd/src/microspdy/ |
D | compression.c | 219 strm->zalloc = Z_NULL; in SPDYF_zlib_deflate_init() 324 strm->zalloc = Z_NULL; in SPDYF_zlib_inflate_init()
|
/third_party/FreeBSD/sys/dev/usb/net/ |
D | usb_ethernet.c | 166 sc = (struct los_eth_driver *)zalloc(sizeof(struct los_eth_driver)); in if_alloc() 171 drv_sc = (struct eth_drv_sc *)zalloc(sizeof(struct eth_drv_sc)); in if_alloc() 177 drv_sc->funs = (struct eth_hwr_funs*)zalloc(sizeof(struct eth_hwr_funs)); in if_alloc() 543 struct pbuf *m_new = (struct pbuf *)zalloc(sizeof(struct pbuf)); in uether_newbuf()
|
/third_party/openssl/crypto/comp/ |
D | c_zlib.c | 131 state->istream.zalloc = zlib_zalloc; in zlib_stateful_init() 140 state->ostream.zalloc = zlib_zalloc; in zlib_stateful_init() 330 ctx->zin.zalloc = Z_NULL; in bio_zlib_new() 332 ctx->zout.zalloc = Z_NULL; in bio_zlib_new()
|
/third_party/node/deps/openssl/openssl/crypto/comp/ |
D | c_zlib.c | 131 state->istream.zalloc = zlib_zalloc; in zlib_stateful_init() 140 state->ostream.zalloc = zlib_zalloc; in zlib_stateful_init() 330 ctx->zin.zalloc = Z_NULL; in bio_zlib_new() 332 ctx->zout.zalloc = Z_NULL; in bio_zlib_new()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/ |
D | malloc.h | 45 void *zalloc(size_t size);
|