Home
last modified time | relevance | path

Searched refs:realloc (Results 1 – 25 of 430) sorted by relevance

12345678910>>...18

/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/
H A Deb90.C5 #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 Dperl.supp15 realloc
18 fun:realloc
34 realloc
37 fun:realloc
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Drealloc.C3 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 Dm-un-2.c7 extern void* realloc (void*, size_t);
25 ._realloc = realloc
31 ._realloc = realloc
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp81 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 Dasan_malloc_win.cpp134 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 Doverload.t16 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 Dindent_globs.h58 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 Dwrappers_c_test.cpp163 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 Dmf-hooks1.c178 #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 Dgetcap.c354 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 Dsystem.h325 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 Dxmalloc.c87 void *realloc (void *, size_t);
154 newmem = realloc (oldmem, size); in xrealloc()
/openbsd-src/usr.bin/rsync/
H A Dsymlinks.c40 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 Dgetline.c30 char *malloc (), *realloc ();
108 *lineptr = realloc (*lineptr, *n); in getstr()
/openbsd-src/lib/libevent/
H A Dselect.c204 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 Drec_utils.c63 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 Drec_get.c122 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 Dsystem.h410 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 Dmemcheck.c150 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 Dmemprof_flags.inc35 "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 Dios.cpp168 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 Dlibelf_open.c70 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 Dstd_cstdlib.h75 #undef realloc
109 using ::realloc;
/openbsd-src/gnu/gcc/libstdc++-v3/include/c_std/
H A Dstd_cstdlib.h95 #undef realloc
131 using ::realloc;

12345678910>>...18