HomeSort by: relevance | last modified time | path
    Searched defs:realloc (Results 1 - 25 of 114) sorted by relevancy

1 2 3 4 5

  /src/external/bsd/libbind/dist/port/cygwin/include/
ansi_realloc.h 22 #define realloc __ansi_realloc macro
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
realloc.c 1 /* $NetBSD: realloc.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */
37 #undef realloc macro
41 #undef realloc macro
48 return realloc(ptr, size);
  /src/external/gpl2/diffutils/dist/lib/
realloc.c 1 /* $NetBSD: realloc.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */
3 /* Work around bug on some systems where realloc (NULL, 0) fails.
25 #undef realloc macro
30 char *realloc ();
45 return realloc (p, n);
  /src/external/gpl2/xcvs/dist/lib/
realloc.c 0 /* realloc() function that is glibc compatible.
18 __RCSID("$NetBSD: realloc.c,v 1.2 2016/05/17 14:00:09 christos Exp $");
26 #undef realloc macro
41 /* In theory realloc might fail, so don't rely on it to free. */
48 return realloc (p, n);
  /src/external/bsd/flex/dist/lib/
realloc.c 2 #undef realloc macro
23 result = realloc (p, n);
  /src/external/gpl3/gdb/dist/gnulib/import/
realloc.c 0 /* realloc() function that is glibc compatible.
29 /* Call the system's realloc below. This file does not define
31 #undef realloc macro
55 void *result = realloc (p, n);
  /src/external/gpl3/gdb.old/dist/gnulib/import/
realloc.c 0 /* realloc() function that is glibc compatible.
29 /* Call the system's realloc below. This file does not define
31 #undef realloc macro
55 void *result = realloc (p, n);
  /src/external/bsd/ntp/dist/sntp/unity/
unity_fixture_malloc_overrides.h 15 #define realloc unity_realloc macro
  /src/sys/sys/
malloc.h 72 #define realloc(ptr, size, type, flags) kern_realloc(ptr, size, flags) macro
  /src/external/bsd/tre/dist/lib/
xmalloc.h 56 #undef realloc macro
61 #define realloc USE_XREALLOC_INSTEAD_OF_REALLOC macro
70 #define xrealloc(ptr, new_size) realloc(ptr, new_size)
  /src/external/gpl3/binutils/dist/gprofng/src/
dbe_hwc.h 31 #define realloc(p, s) xrealloc (p, s) macro
  /src/external/gpl3/binutils.old/dist/gprofng/src/
dbe_hwc.h 31 #define realloc(p, s) xrealloc (p, s) macro
  /src/external/gpl3/gcc/dist/libbacktrace/
instrumented_alloc.c 35 and realloc are only effective in alloc.c itself. This does not work for
53 #define realloc instrumented_realloc macro
56 #undef realloc macro
91 res = realloc (ptr, size);
  /src/external/gpl3/gcc.old/dist/libbacktrace/
instrumented_alloc.c 35 and realloc are only effective in alloc.c itself. This does not work for
53 #define realloc instrumented_realloc macro
56 #undef realloc macro
91 res = realloc (ptr, size);
  /src/external/gpl3/gdb/dist/libbacktrace/
instrumented_alloc.c 35 and realloc are only effective in alloc.c itself. This does not work for
53 #define realloc instrumented_realloc macro
56 #undef realloc macro
91 res = realloc (ptr, size);
  /src/external/gpl3/gdb.old/dist/libbacktrace/
instrumented_alloc.c 35 and realloc are only effective in alloc.c itself. This does not work for
53 #define realloc instrumented_realloc macro
56 #undef realloc macro
91 res = realloc (ptr, size);
  /src/crypto/dist/ipsec-tools/src/racoon/
gcmalloc.h 46 * malloc(), calloc(), realloc(), and free() entry points in the main
70 realloc(void *ptr, size_t size) function
117 #define racoon_realloc(old, sz) realloc((old), (sz))
  /src/external/bsd/file/dist/src/
memtest.c 85 realloc(void *q, size_t len) function
88 void *(*orig)(void *, size_t) = dlsym(RTLD_NEXT, "realloc");
90 int l = snprintf(buf, sizeof(buf), "realloc %zu %p\n", len, p);
  /src/external/gpl2/libmalloc/dist/
realloc.c 1 /* $NetBSD: realloc.c,v 1.1.1.1 2016/01/13 21:42:18 christos Exp $ */
100 /* Debugging hook for realloc. */
110 realloc (ptr, size) function
  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_malloc_linux.cpp 12 // We simply define functions like malloc, free, realloc, etc.
81 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
83 return DlsymAlloc::Realloc(ptr, size);
173 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugK
187 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugL
193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_malloc_linux.cpp 12 // We simply define functions like malloc, free, realloc, etc.
81 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
83 return DlsymAlloc::Realloc(ptr, size);
173 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugK
187 void *(*realloc)(void *oldMem, uptr bytes); member in struct:MallocDebugL
193 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)};
198 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
  /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-regression/
open-error-free.c 39 real_realloc = (void *(*) (void *, size_t)) dlsym (RTLD_NEXT, "realloc");
59 void *realloc (void *ptr, size_t size) function
  /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-regression/
open-error-free.c 39 real_realloc = (void *(*) (void *, size_t)) dlsym (RTLD_NEXT, "realloc");
59 void *realloc (void *ptr, size_t size) function
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_malloc_win.cc 105 void *realloc(void *ptr, size_t size) { function
118 return realloc(ptr, size);
128 return realloc(p, size);
150 // _expand is used in realloc-like functions to resize the buffer if possible.
202 // Realloc should never reallocate in place.
236 TryToOverrideFunction("realloc", (uptr)realloc);
237 TryToOverrideFunction("_realloc_base", (uptr)realloc);
238 TryToOverrideFunction("_realloc_crt", (uptr)realloc);
  /src/external/bsd/unbound/dist/util/
alloc.h 196 # define realloc(p,s) unbound_stat_realloc_lite(p, s, __FILE__, __LINE__, __func__) macro

Completed in 46 milliseconds

1 2 3 4 5