| /f-stack/app/redis-5.0.5/deps/jemalloc/test/integration/ |
| H A D | overflow.c | 34 assert_ptr_null(realloc(p, max_size_class + 1), in TEST_BEGIN() 36 assert_ptr_null(realloc(p, SIZE_T_MAX), in TEST_BEGIN()
|
| /f-stack/freebsd/contrib/ck/src/ |
| H A D | ck_array.c | 56 if (allocator->realloc == NULL || in ck_array_init() 89 target = array->allocator->realloc(target, in ck_array_put() 112 target = array->allocator->realloc(target, in ck_array_put()
|
| /f-stack/freebsd/netpfil/ipfw/ |
| H A D | ip_fw_pfil.c | 338 bool mem, realloc; in ipfw_check_frame() local 343 realloc = false; in ipfw_check_frame() 347 mem = realloc = false; in ipfw_check_frame() 395 realloc = true; in ipfw_check_frame() 413 realloc = true; in ipfw_check_frame() 432 if (realloc && ret == PFIL_PASS) in ipfw_check_frame()
|
| /f-stack/app/redis-5.0.5/src/ |
| H A D | zmalloc.c | 63 #define realloc(ptr,size) tc_realloc(ptr,size) macro 68 #define realloc(ptr,size) je_realloc(ptr,size) macro 154 newptr = realloc(ptr,size); in zrealloc() 163 newptr = realloc(realptr,size+PREFIX_SIZE); in zrealloc()
|
| /f-stack/freebsd/kern/ |
| H A D | kern_osd.c | 127 osdm[type].osd_methods = realloc(osdm[type].osd_methods, in osd_register() 176 osdm[type].osd_destructors = realloc(osdm[type].osd_destructors, in osd_deregister() 180 osdm[type].osd_methods = realloc(osdm[type].osd_methods, in osd_deregister() 257 newptr = realloc(osd->osd_slots, sizeof(void *) * slot, in osd_set_reserved() 367 osd->osd_slots = realloc(osd->osd_slots, in do_osd_del()
|
| /f-stack/app/redis-5.0.5/deps/hiredis/ |
| H A D | sdsalloc.h | 41 #define s_realloc realloc
|
| /f-stack/freebsd/contrib/ck/include/ |
| H A D | ck_malloc.h | 35 void *(*realloc)(void *, size_t, size_t, bool); member
|
| /f-stack/tools/compat/ |
| H A D | reallocf.c | 35 nptr = realloc(ptr, size); in reallocf()
|
| /f-stack/freebsd/contrib/openzfs/cmd/zpool/ |
| H A D | Makefile.am | 70 zpool.d/realloc \ 114 realloc \
|
| H A D | zpool_iter.c | 359 tmp = realloc(uniq_cols, sizeof (*uniq_cols) * in process_unique_cmd_columns() 453 tmp = realloc(data->lines, in vdev_process_cmd_output() 464 tmp = realloc(data->cols, in vdev_process_cmd_output() 643 if (!(vcdl->data = realloc(vcdl->data, in for_each_vdev_run_cb()
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/src/ |
| H A D | zone.c | 22 void *(*realloc)(struct _malloc_zone_t *, void *, size_t); member 181 return realloc(ptr, size); in zone_realloc() 338 jemalloc_zone.realloc = zone_realloc; in zone_init()
|
| /f-stack/freebsd/contrib/dev/acpica/compiler/ |
| H A D | aslallocate.c | 267 *Buffer = realloc (*Buffer, NewSize); in UtReallocLineBuffers()
|
| /f-stack/freebsd/contrib/libnv/ |
| H A D | nv_impl.h | 58 #define nv_realloc(buf, size) realloc((buf), (size), M_NVLIST, \ 74 #define nv_realloc(buf, size) realloc((buf), (size))
|
| /f-stack/dpdk/lib/librte_graph/ |
| H A D | graph_stats.c | 121 stats = realloc(NULL, sz); in stats_mem_init() 165 stats = realloc(stats, stats->sz + stats->cluster_node_size); in stats_mem_populate() 217 cluster->graphs = realloc(cluster->graphs, sz); in cluster_add()
|
| /f-stack/tools/netstat/ |
| H A D | common.c | 119 if ((ifmap = realloc(ifmap, size)) == NULL) in prepare_ifmap()
|
| H A D | nhops.c | 222 if ((map->ptr = realloc(map->ptr, sz)) == NULL) in nhop_map_update() 384 nh_map = realloc(nh_map, nh_size * sizeof(struct nhops_map)); in dump_nhops_sysctl()
|
| /f-stack/freebsd/contrib/openzfs/lib/libzutil/ |
| H A D | zutil_pool.c | 131 tmp = realloc(*records, in zpool_history_unpack()
|
| /f-stack/dpdk/lib/librte_pipeline/ |
| H A D | rte_swx_pipeline_spec.c | 223 new_fields = realloc(s->fields, in struct_block_parse() 471 new_instructions = realloc(s->instructions, in action_block_parse() 638 new_fields = realloc(s->params.fields, in table_key_block_parse() 717 new_action_names = realloc(s->params.action_names, in table_actions_block_parse() 1035 new_instructions = realloc(s->instructions, in apply_block_parse()
|
| /f-stack/freebsd/contrib/openzfs/lib/libzfs/os/freebsd/ |
| H A D | libzfs_zmount.c | 57 *iov = realloc(*iov, sizeof (**iov) * (i + 2)); in build_iovec()
|
| /f-stack/tools/compat/include/sys/ |
| H A D | malloc.h | 188 void *realloc(void *addr, unsigned long size, struct malloc_type *type,
|
| /f-stack/dpdk/lib/librte_eal/common/ |
| H A D | eal_common_trace_points.c | 54 lib.eal.mem.realloc)
|
| /f-stack/app/redis-5.0.5/deps/jemalloc/test/unit/ |
| H A D | decay.c | 253 p = realloc(NULL, large0); in TEST_BEGIN() 259 p = realloc(p, large0); in TEST_BEGIN() 265 realloc(p, 0); in TEST_BEGIN()
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_macfilter.c | 300 mf_mac_p mfp_new = realloc(mfp->mf_macs, in macfilter_mactable_resize() 663 mfp->mf_upper = realloc(mfp->mf_upper, in ng_macfilter_newhook() 849 mfp->mf_upper = realloc(mfp->mf_upper, in ng_macfilter_disconnect()
|
| /f-stack/tools/libutil/ |
| H A D | fparseln.c | 165 if ((cp = realloc(buf, len + s + 1)) == NULL) { in fparseln()
|
| H A D | login_ok.c | 104 else if ((lt = realloc(*ltptr, j * sizeof(struct login_time))) != NULL) { in login_timelist()
|