/glibc-2.36/malloc/ |
D | tst-realloc.c | 41 p = realloc (NULL, -1); in do_test() 55 p = realloc (NULL, 10); in do_test() 68 p = realloc (p, 200); in do_test() 86 p = realloc (NULL, 100); in do_test() 93 p = realloc (p, 16); in do_test() 116 c = realloc (p, -1); in do_test() 134 p = realloc (p, 0); in do_test() 139 p = realloc (NULL, 0); in do_test()
|
D | tst-malloc-check.c | 57 p = realloc (p, 0); in do_test() 65 p = realloc (p, 0); in do_test() 83 if (realloc (p, -256) != NULL) in do_test() 109 if (realloc (p, -1) != NULL) in do_test()
|
D | tst-malloc.c | 61 p = realloc (p, 0); in do_test() 69 p = realloc (p, 0); in do_test()
|
D | tst-compathooks-off.c | 62 void *mem = realloc (oldptr, bytes); in realloc_called() 116 p = realloc (p, 0); in do_test()
|
D | Versions | 39 realloc; 110 realloc;
|
D | malloc-debug.c | 41 DEBUG_FN(realloc); 268 strong_alias (__debug_realloc, realloc) in strong_alias() argument 665 compat_symbol (libc_malloc_debug, realloc, realloc, GLIBC_2_0);
|
D | tst-malloc-thread-fail.c | 89 void *p = realloc (NULL, 16); in allocate_1() 95 q = realloc (p, allocation_size); in allocate_1()
|
D | reallocarray.c | 32 return realloc (optr, bytes); in __libc_reallocarray()
|
D | scratch_buffer_dupfree.c | 37 void *copy = realloc (data, size); in __libc_scratch_buffer_dupfree()
|
/glibc-2.36/stdio-common/ |
D | vfscanf-internal.c | 761 newstr = (char *) realloc (*strptr, strsize * 2); in __vfwscanf_internal() 765 newstr = (char *) realloc (*strptr, in __vfwscanf_internal() 811 str = (char *) realloc (*strptr, newsize); in __vfwscanf_internal() 816 str = (char *) realloc (*strptr, strsize + 1); in __vfwscanf_internal() 849 char *cp = (char *) realloc (*strptr, str - *strptr); in __vfwscanf_internal() 882 wstr = (wchar_t *) realloc (*strptr, in __vfwscanf_internal() 887 wstr = (wchar_t *) realloc (*strptr, in __vfwscanf_internal() 937 wstr = (wchar_t *) realloc (*strptr, in __vfwscanf_internal() 942 wstr = (wchar_t *) realloc (*strptr, in __vfwscanf_internal() 1002 wchar_t *cp = (wchar_t *) realloc (*strptr, in __vfwscanf_internal() [all …]
|
/glibc-2.36/include/ |
D | rtld-malloc.h | 34 extern __typeof (realloc) *__rtld_realloc attribute_hidden; 60 realloc (void *ptr, size_t size) in realloc() function 86 # define __rtld_realloc (&realloc)
|
/glibc-2.36/sysdeps/unix/sysv/linux/ |
D | ifreq.c | 52 void *newp = realloc (ifc.ifc_buf, ifc.ifc_len); in __ifreq() 72 *ifreqs = realloc (ifc.ifc_buf, nifs * sizeof (struct ifreq)); in __ifreq()
|
/glibc-2.36/sysdeps/unix/ |
D | ifreq.c | 44 void *newp = realloc (ifc.ifc_buf, ifc.ifc_len); in __ifreq() 77 *ifreqs = realloc (ifc.ifc_buf, nifs * sizeof (struct ifreq)); in __ifreq()
|
/glibc-2.36/locale/programs/ |
D | xmalloc.c | 35 VOID *realloc (); 102 p = realloc (p, n); in xrealloc()
|
/glibc-2.36/libio/ |
D | vasprintf.c | 68 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed); in __vasprintf_internal() 79 *result_ptr = (char *) realloc (sf._sbf._f._IO_buf_base, needed); in __vasprintf_internal()
|
/glibc-2.36/posix/ |
D | tst-pcre.c | 114 pattern = realloc (pattern, p - line); in main() 143 string = realloc (string, len - 3); in main()
|
D | spawn_faction_init.c | 32 void *newmem = realloc (file_actions->__actions, in __posix_spawn_file_actions_realloc()
|
/glibc-2.36/stdlib/ |
D | isomac.c | 306 result = realloc (result, result_max * sizeof (char **)); in get_null_defines() 332 result = realloc (result, result_max * sizeof (char **)); in get_null_defines()
|
/glibc-2.36/hurd/ |
D | hurdmalloc.h | 20 #define realloc _hurd_realloc macro
|
/glibc-2.36/support/ |
D | xrealloc.c | 28 void *result = realloc (p, n); in xrealloc()
|
/glibc-2.36/nis/ |
D | nis_subr.c | 200 nis_name *newp = realloc (getnames, in nis_getnames() 267 nis_name *newp = realloc (getnames, in nis_getnames()
|
/glibc-2.36/intl/ |
D | localealias.c | 333 char *new_pool = (char *) realloc (string_space, new_size); in read_alias_file() 401 new_map = (struct alias_map *) realloc (map, (new_size in extend_alias_table()
|
/glibc-2.36/sysdeps/unix/sysv/linux/powerpc/powerpc64/ |
D | localplt.data | 4 libc.so: realloc
|
/glibc-2.36/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/ |
D | localplt.data | 5 libc.so: realloc
|
/glibc-2.36/string/ |
D | argz-addsep.c | 34 *argz = (char *) realloc (*argz, *argz_len + nlen); in __argz_add_sep()
|