Searched defs:realloc (Results 1 - 4 of 4) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
H A Drealloc.c0 /* realloc() function that is glibc compatible.
22 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */
23 #ifdef realloc
33 /* Below we want to call the system's malloc and realloc.
35 declaration of malloc(), not of rpl_malloc(), and likewise for realloc. */
37 #undef realloc macro
44 /* Below we want to call the system's malloc and realloc.
48 #undef realloc macro
64 /* In theory realloc might fail, so don't rely on it to free. */
79 result = realloc (
[all...]
/ndk/tests/device/test-stlport_shared-exception/jni/
H A Dbadalloc1.cpp63 extern "C" void *realloc (void *p, size_t size) function
/ndk/tests/device/test-stlport_static-exception/jni/
H A Dbadalloc1.cpp63 extern "C" void *realloc (void *p, size_t size) function
/ndk/sources/host-tools/make-3.81/glob/
H A Dglob.c150 extern char *malloc (), *realloc ();
203 return (char *) realloc (p, n);
205 # define realloc my_realloc macro
813 = (char **) realloc (pglob->gl_pathv,
932 = (char **) realloc (pglob->gl_pathv,
987 new_pathv = (char **) realloc (pglob->gl_pathv,
1035 char *new = realloc (pglob->gl_pathv[i], len);
1378 = (char **) realloc (pglob->gl_pathv,

Completed in 1277 milliseconds