| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/ |
| H A D | eb90.C | 5 #define realloc Realloc macro 11 realloc(); 19 realloc() { in realloc() function 20 tmpRgn.realloc(); in realloc()
|
| /openbsd-src/gnu/usr.bin/perl/t/ |
| H A D | perl.supp | 15 realloc 18 fun:realloc 34 realloc 37 fun:realloc
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/ |
| H A D | realloc.C | 3 extern "C" void realloc(); 7 void realloc(int foo,int bar); 12 c.realloc(50,50); in f()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| H A D | m-un-2.c | 7 extern void* realloc (void*, size_t); 25 ._realloc = realloc 31 ._realloc = realloc
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
| H A D | asan_malloc_linux.cpp | 81 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { in INTERCEPTOR() argument 173 void *(*realloc)(void *oldMem, uptr bytes); member 187 void *(*realloc)(void *oldMem, uptr bytes); member 193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
|
| H A D | asan_malloc_win.cpp | 134 void *realloc(void *ptr, size_t size) { in realloc() function 147 return realloc(ptr, size); in _realloc_base() 499 TryToOverrideFunction("realloc", (uptr)realloc); in ReplaceSystemMalloc() 500 TryToOverrideFunction("_realloc_base", (uptr)realloc); in ReplaceSystemMalloc() 501 TryToOverrideFunction("_realloc_crt", (uptr)realloc); in ReplaceSystemMalloc()
|
| /openbsd-src/gnu/usr.bin/perl/t/re/ |
| H A D | overload.t | 16 my @realloc; 22 push @realloc, "xxxxxx"; # encourage realloc of SV and PVX 27 push @realloc, "yyyyyy"; # encourage realloc of SV and PVX 32 push @realloc, "zzzzzz"; # encourage realloc of SV and PVX
|
| /openbsd-src/usr.bin/indent/ |
| H A D | indent_globs.h | 58 codebuf = realloc(codebuf, nsize); \ 69 combuf = realloc(combuf, nsize); \ 80 labbuf = realloc(labbuf, nsize); \ 91 tokenbuf = realloc(tokenbuf, nsize); \
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/tests/ |
| H A D | wrappers_c_test.cpp | 163 void *P = realloc(nullptr, 0U); in TEST() 170 EXPECT_EQ(realloc(P, 0U), nullptr); in TEST() 177 P = realloc(P, Size * 2U); in TEST() 183 P = realloc(P, Size / 2U); in TEST() 190 EXPECT_DEATH(P = realloc(P, Size), ""); in TEST() 193 EXPECT_EQ(realloc(nullptr, SIZE_MAX), nullptr); in TEST() 198 EXPECT_EQ(realloc(P, SIZE_MAX), nullptr); in TEST() 211 P = realloc(P, Size * 2U); in TEST()
|
| /openbsd-src/gnu/gcc/libmudflap/ |
| H A D | 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()
|
| /openbsd-src/lib/libc/gen/ |
| H A D | getcap.c | 354 nrecord = realloc(record, newsize); in getent() 497 nrecord = realloc(record, newsize); in getent() 540 if ((nrecord = realloc(record, rp - record)) == NULL) { in getent() 757 nrecord = realloc(record, newsize); in cgetnext() 907 if ((nmem = realloc(mem, size + SFRAG)) == NULL) { in cgetstr() 926 if ((nmem = realloc(mem, mp - mem)) == NULL) { in cgetstr() 988 if ((nmem = realloc(mem, size + SFRAG)) == NULL) { in cgetustr() 1007 if ((nmem = realloc(mem, mp - mem)) == NULL) { in cgetustr()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | system.h | 325 extern PTR realloc PARAMS ((PTR, size_t)); 574 #define really_call_realloc realloc 590 #define realloc xrealloc macro 593 #undef realloc 594 #pragma GCC poison malloc realloc
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | xmalloc.c | 87 void *realloc (void *, size_t); 154 newmem = realloc (oldmem, size); in xrealloc()
|
| /openbsd-src/usr.bin/rsync/ |
| H A D | symlinks.c | 40 if ((pp = realloc(buf, sz + 1)) == NULL) { in symlink_read() 79 if ((pp = realloc(buf, sz + 1)) == NULL) { in symlinkat_read()
|
| /openbsd-src/gnu/usr.bin/cvs/lib/ |
| H A D | getline.c | 30 char *malloc (), *realloc (); 108 *lineptr = realloc (*lineptr, *n); in getstr()
|
| /openbsd-src/lib/libevent/ |
| H A D | select.c | 204 if ((readset_in = realloc(sop->event_readset_in, fdsz)) == NULL) in select_resize() 207 if ((readset_out = realloc(sop->event_readset_out, fdsz)) == NULL) in select_resize() 210 if ((writeset_in = realloc(sop->event_writeset_in, fdsz)) == NULL) in select_resize() 213 if ((writeset_out = realloc(sop->event_writeset_out, fdsz)) == NULL) in select_resize()
|
| /openbsd-src/lib/libc/db/recno/ |
| H A D | rec_utils.c | 63 p = realloc(t->bt_rkey.data, sizeof(recno_t)); in __rec_ret() 91 p = realloc(t->bt_rdata.data, rl->dsize + 1); in __rec_ret()
|
| H A D | rec_get.c | 122 tp = realloc(t->bt_rdata.data, t->bt_reclen); in __rec_fpipe() 193 tp = realloc(t->bt_rdata.data, t->bt_rdata.size); in __rec_vpipe() 230 tp = realloc(t->bt_rdata.data, t->bt_reclen); in __rec_fmap()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | 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
|
| /openbsd-src/lib/libexpat/tests/ |
| H A D | memcheck.c | 150 entry->allocation = realloc(ptr, size); in tracking_realloc() 167 void *const reallocated = realloc(ptr, size); in tracking_realloc()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/memprof/ |
| H A D | memprof_flags.inc | 35 "realloc(p, 0) is equivalent to free(p) by default (Same as the " 36 "POSIX standard). If set to false, realloc(p, 0) will return a "
|
| /openbsd-src/gnu/llvm/libcxx/src/ |
| H A D | ios.cpp | 168 long* iarray = static_cast<long*>(realloc(__iarray_, newcap * sizeof(long))); in iword() 192 void** parray = static_cast<void**>(realloc(__parray_, newcap * sizeof(void *))); in pword() 218 …event_callback* fns = static_cast<event_callback*>(realloc(__fn_, newcap * sizeof(event_callback))… in register_callback() 222 int* indxs = static_cast<int *>(realloc(__index_, newcap * sizeof(int))); in register_callback()
|
| /openbsd-src/lib/libelf/ |
| H A D | libelf_open.c | 70 if ((t = realloc(buf, bufsz)) == NULL) in _libelf_read_special_file() 97 if ((t = realloc(buf, datasz)) == NULL) in _libelf_read_special_file()
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/include/c_std/ |
| H A D | std_cstdlib.h | 75 #undef realloc 109 using ::realloc;
|
| /openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/ |
| H A D | std_cstdlib.h | 95 #undef realloc 131 using ::realloc;
|