Home
last modified time | relevance | path

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

1234567891011

/glibc-2.36/malloc/
Dtst-realloc.c41 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()
Dtst-malloc-check.c57 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()
Dtst-malloc.c61 p = realloc (p, 0); in do_test()
69 p = realloc (p, 0); in do_test()
Dtst-compathooks-off.c62 void *mem = realloc (oldptr, bytes); in realloc_called()
116 p = realloc (p, 0); in do_test()
DVersions39 realloc;
110 realloc;
Dmalloc-debug.c41 DEBUG_FN(realloc);
268 strong_alias (__debug_realloc, realloc) in strong_alias() argument
665 compat_symbol (libc_malloc_debug, realloc, realloc, GLIBC_2_0);
Dtst-malloc-thread-fail.c89 void *p = realloc (NULL, 16); in allocate_1()
95 q = realloc (p, allocation_size); in allocate_1()
Dreallocarray.c32 return realloc (optr, bytes); in __libc_reallocarray()
Dscratch_buffer_dupfree.c37 void *copy = realloc (data, size); in __libc_scratch_buffer_dupfree()
/glibc-2.36/stdio-common/
Dvfscanf-internal.c761 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/
Drtld-malloc.h34 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/
Difreq.c52 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/
Difreq.c44 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/
Dxmalloc.c35 VOID *realloc ();
102 p = realloc (p, n); in xrealloc()
/glibc-2.36/libio/
Dvasprintf.c68 *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/
Dtst-pcre.c114 pattern = realloc (pattern, p - line); in main()
143 string = realloc (string, len - 3); in main()
Dspawn_faction_init.c32 void *newmem = realloc (file_actions->__actions, in __posix_spawn_file_actions_realloc()
/glibc-2.36/stdlib/
Disomac.c306 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/
Dhurdmalloc.h20 #define realloc _hurd_realloc macro
/glibc-2.36/support/
Dxrealloc.c28 void *result = realloc (p, n); in xrealloc()
/glibc-2.36/nis/
Dnis_subr.c200 nis_name *newp = realloc (getnames, in nis_getnames()
267 nis_name *newp = realloc (getnames, in nis_getnames()
/glibc-2.36/intl/
Dlocalealias.c333 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/
Dlocalplt.data4 libc.so: realloc
/glibc-2.36/sysdeps/unix/sysv/linux/powerpc/powerpc32/fpu/
Dlocalplt.data5 libc.so: realloc
/glibc-2.36/string/
Dargz-addsep.c34 *argz = (char *) realloc (*argz, *argz_len + nlen); in __argz_add_sep()

1234567891011