| /freebsd-11-stable/contrib/ldns/compat/ |
| HD | realloc.c | 7 #undef realloc 11 void *realloc (void*, size_t); 28 return realloc(ptr, n); in rpl_realloc()
|
| /freebsd-11-stable/tools/regression/redzone9/ |
| HD | redzone.c | 75 p = realloc(p, 10, M_TEMP, M_NOWAIT); in redzone_sysctl() 84 p = realloc(p, 10, M_TEMP, M_NOWAIT); in redzone_sysctl() 93 p = realloc(p, 8192, M_TEMP, M_NOWAIT); in redzone_sysctl() 102 p = realloc(p, 8192, M_TEMP, M_NOWAIT); in redzone_sysctl()
|
| /freebsd-11-stable/usr.bin/indent/ |
| HD | indent_globs.h | 61 codebuf = (char *) realloc(codebuf, nsize); \ 73 combuf = (char *) realloc(combuf, nsize); \ 85 labbuf = (char *) realloc(labbuf, nsize); \ 96 tokenbuf = (char *) realloc(tokenbuf, nsize); \
|
| /freebsd-11-stable/contrib/pf/libevent/ |
| HD | select.c | 231 if ((readset_in = realloc(sop->event_readset_in, fdsz)) == NULL) in select_resize() 234 if ((readset_out = realloc(sop->event_readset_out, fdsz)) == NULL) in select_resize() 237 if ((writeset_in = realloc(sop->event_writeset_in, fdsz)) == NULL) in select_resize() 240 if ((writeset_out = realloc(sop->event_writeset_out, fdsz)) == NULL) in select_resize() 243 if ((r_by_fd = realloc(sop->event_r_by_fd, in select_resize() 247 if ((w_by_fd = realloc(sop->event_w_by_fd, in select_resize()
|
| HD | poll.c | 239 tmp_event_set = realloc(pop->event_set, in poll_add() 247 tmp_event_r_back = realloc(pop->event_r_back, in poll_add() 256 tmp_event_w_back = realloc(pop->event_w_back, in poll_add() 278 realloc(pop->idxplus1_by_fd, new_count * sizeof(int)); in poll_add()
|
| /freebsd-11-stable/usr.bin/whereis/ |
| HD | whereis.c | 124 *dirlist = realloc(*dirlist, (i + 1) * sizeof(char *)); in scanopts() 211 *cppp = realloc(*cppp, (*ip + 2) * sizeof(char *)); in decolonify() 281 bindirs = realloc(bindirs, (nele + 2) * sizeof(char *)); in defaults() 368 sourcedirs = realloc(sourcedirs, in defaults() 464 bin = realloc(bin, in main() 536 man = realloc(man, in main() 575 src = realloc(src, in main() 643 src = realloc(src, in main()
|
| /freebsd-11-stable/contrib/elftoolchain/libdwarf/ |
| HD | libdwarf_rw.c | 207 *block = realloc(*block, (size_t) *size); in _dwarf_write_lsb_alloc() 263 *block = realloc(*block, (size_t) *size); in _dwarf_write_msb_alloc() 332 *block = realloc(*block, (size_t) *size); in _dwarf_write_sleb128_alloc() 395 *block = realloc(*block, (size_t) *size); in _dwarf_write_uleb128_alloc() 489 *block = realloc(*block, (size_t) *size); in _dwarf_write_string_alloc() 533 *block = realloc(*block, (size_t) *size); in _dwarf_write_block_alloc() 564 *block = realloc(*block, (size_t) *size); in _dwarf_write_padding_alloc()
|
| /freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/ |
| HD | asan_malloc_linux.cpp | 158 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { in INTERCEPTOR() argument 254 void *(*realloc)(void *oldMem, uptr bytes); member 268 void *(*realloc)(void *oldMem, uptr bytes); member 274 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 279 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
|
| /freebsd-11-stable/crypto/heimdal/lib/roken/ |
| HD | realloc.c | 35 #undef realloc 45 return realloc(ptr, size); in rk_realloc()
|
| HD | getcap.c | 423 record = realloc(record, newsize); in getent() 565 record = realloc(record, newsize); in getent() 605 realloc(record, (size_t)(rp - record))) == NULL) { in getent() 946 if ((nmem = realloc(mem, size + SFRAG)) == NULL) { in cgetstr() 963 if ((nmem = realloc(mem, (size_t)(mp - mem))) == NULL) { in cgetstr() 1026 if ((mem = realloc(mem, size + SFRAG)) == NULL) in cgetustr() 1040 if ((mem = realloc(mem, (size_t)(mp - mem))) == NULL) in cgetustr()
|
| /freebsd-11-stable/contrib/gcclibs/libmudflap/ |
| HD | mf-hooks1.c | 178 #undef realloc 179 WRAPPER(void *, realloc, void *buf, size_t c) in WRAPPER() argument 181 DECLARE(void * , realloc, void *, size_t); in WRAPPER() 186 BEGIN_PROTECT (realloc, buf, c); in WRAPPER() 195 result = (char *) CALL_REAL (realloc, base, size_with_crumple_zones); in WRAPPER()
|
| /freebsd-11-stable/contrib/sendmail/libsm/ |
| HD | heap.c | 150 newptr = realloc(ptr, MALLOC_SIZE(size)); 177 newptr = realloc(ptr, MALLOC_SIZE(size)); 533 newptr = realloc(ptr, MALLOC_SIZE(size)); 555 newptr = realloc(ptr, MALLOC_SIZE(size)); 601 newptr = realloc(ptr, MALLOC_SIZE(size)); 624 newptr = realloc(ptr, MALLOC_SIZE(size));
|
| /freebsd-11-stable/gnu/usr.bin/grep/ |
| HD | xmalloc.c | 29 void *realloc (); 99 p = realloc (p, n); in xrealloc()
|
| /freebsd-11-stable/contrib/byacc/ |
| HD | mstring.c | 49 char *new_ptr = realloc(buf_ptr, (buf_len * 3) / 2); in msprintf() 76 if ((new_base = realloc(s->base, nl))) in msprintf() 104 if ((s->base = realloc(s->base, len + len + TAIL))) in mputchar()
|
| /freebsd-11-stable/lib/libc/net/ |
| HD | nscache.c | 89 cache_data->key = realloc(cache_data->key, in __nss_common_cache_read() 119 buffer = (char *)realloc(buffer, buffer_size); in __nss_common_cache_read() 205 buffer = (char *)realloc(buffer, buffer_size); in __nss_common_cache_write() 300 buffer = (char *)realloc(buffer, buffer_size); in __nss_mp_cache_read() 376 buffer = (char *)realloc(buffer, buffer_size); in __nss_mp_cache_write()
|
| /freebsd-11-stable/sys/contrib/ck/src/ |
| HD | 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()
|
| /freebsd-11-stable/contrib/gcclibs/libiberty/ |
| HD | xmalloc.c | 87 void *realloc (void *, size_t); 179 newmem = realloc (oldmem, size); in xrealloc()
|
| /freebsd-11-stable/contrib/binutils/libiberty/ |
| HD | xmalloc.c | 87 void *realloc (void *, size_t); 179 newmem = realloc (oldmem, size); in xrealloc()
|
| /freebsd-11-stable/usr.sbin/rpc.statd/ |
| HD | statd.c | 105 hosts_bak = realloc(hosts, nhosts * sizeof(char *)); in main() 166 hosts_bak = realloc(hosts, (nhosts + 2) * in main() 179 hosts_bak = realloc(hosts, (nhosts + 1) * sizeof(char *)); in main() 245 port_list = realloc(port_list, in main() 364 sock_fd = realloc(sock_fd, (sock_fdcnt + 1) * sizeof(int)); in create_service()
|
| /freebsd-11-stable/sys/kern/ |
| HD | kern_osd.c | 125 osdm[type].osd_methods = realloc(osdm[type].osd_methods, in osd_register() 174 osdm[type].osd_destructors = realloc(osdm[type].osd_destructors, in osd_deregister() 178 osdm[type].osd_methods = realloc(osdm[type].osd_methods, in osd_deregister() 255 newptr = realloc(osd->osd_slots, sizeof(void *) * slot, in osd_set_reserved() 365 osd->osd_slots = realloc(osd->osd_slots, in do_osd_del()
|
| /freebsd-11-stable/usr.bin/colldef/ |
| HD | parse.y | 140 if ((__collate_chain_pri_table = realloc(__collate_chain_pri_table, 226 if ((__collate_chain_pri_table = realloc(__collate_chain_pri_table, 280 if ((__collate_chain_pri_table = realloc(__collate_chain_pri_table, 311 if ((__collate_chain_pri_table = realloc(__collate_chain_pri_table,
|
| /freebsd-11-stable/contrib/ntp/sntp/libopts/ |
| HD | autoopts.c | 78 void * res = (p == NULL) ? malloc(sz) : realloc(p, sz); in ao_realloc() 85 #undef realloc 86 #define realloc(_p,_s) ao_realloc(_p,_s) macro
|
| /freebsd-11-stable/lib/libc/db/recno/ |
| HD | rec_utils.c | 70 p = realloc(t->bt_rkey.data, sizeof(recno_t)); in __rec_ret() 98 p = realloc(t->bt_rdata.data, rl->dsize + 1); in __rec_ret()
|
| /freebsd-11-stable/contrib/gcc/ |
| HD | system.h | 410 extern void *realloc (void *, size_t); 633 #define really_call_realloc realloc 639 #define realloc xrealloc macro 655 #undef realloc 656 #pragma GCC poison malloc realloc
|
| /freebsd-11-stable/usr.sbin/rpc.lockd/ |
| HD | lockd.c | 150 hosts_bak = realloc(hosts, nhosts * sizeof(char *)); in main() 232 hosts_bak = realloc(hosts, (nhosts + 2) * in main() 245 hosts_bak = realloc(hosts, (nhosts + 1) * sizeof(char *)); in main() 375 port_list = realloc(port_list, in main() 540 sock_fd = realloc(sock_fd, (sock_fdcnt + 1) * sizeof(int)); in create_service() 667 addrs = realloc(addrs, 2 * (naddrs + 1) * sizeof(char *)); in create_service()
|