Searched refs:realloc (Results 1 - 25 of 606) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3defs.h472 #define ANTLR3_REALLOC(current, request) realloc ((void *)(current), (size_t)(request))
/external/arduino/hardware/arduino/cores/arduino/
H A DWString.cpp153 char *temp = (char *)realloc(_buffer, _length + 1);
/external/bison/
H A Dconfigure7367 # Code from module realloc-posix:
9135 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether malloc, realloc, calloc are POSIX compliant" >&5
9136 $as_echo_n "checking whether malloc, realloc, calloc are POSIX compliant... " >&6; }
27438 gl_LIBOBJS="$gl_LIBOBJS realloc.$ac_objext"
/external/bison/darwin-lib/
H A Dstdlib.h593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1035 # undef realloc
1036 # define realloc rpl_realloc
1038 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
1039 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
1041 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
1046 /* Assume realloc i
[all...]
/external/bison/data/
H A Dglr.c273 # define YYREALLOC realloc
/external/bison/examples/calc++/
H A Dcalc++-scanner.cc261 * and can realloc() it to grow it, and should free() it to
1698 * immediate realloc on the next call.
2045 return (void *) realloc( (char *) ptr, size );
/external/bison/lib/
H A Debitset.c153 = realloc (EBITSET_ELTS (src), size * sizeof (ebitset_elt *));
167 = realloc (EBITSET_ELTS (src), newsize * sizeof (ebitset_elt *));
H A Derror.c221 wchar_t *p = (wchar_t *) realloc (wmessage,
H A Dgetdelim.c52 NULL), pointing to *N characters of space. It is realloc'ed as
74 new_lineptr = (char *) realloc (*lineptr, *n);
111 new_lineptr = (char *) realloc (*lineptr, needed);
H A Dgnulib.mk24 # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libbison --source-base=lib --m4-base=m4 --doc-base=doc --tests-base=tests --aux-dir=build-aux --makefile-name=gnulib.mk --no-conditional-dependencies --no-libtool --macro-prefix=gl argmatch assert c-strcase calloc-posix close closeout config-h configmake dirname error extensions fdl fopen-safer fprintf-posix getline getopt-gnu gettext git-version-gen gitlog-to-changelog gpl-3.0 hash inttypes isnan javacomp-script javaexec-script ldexpl malloc-gnu mbschr mbsrchr mbswidth obstack obstack-printf perror printf-posix progname quote quotearg readme-release realloc-posix snprintf-posix spawn-pipe sprintf-posix stdbool stpcpy strdup-posix strerror strtoul strverscmp unistd unistd-safer unlocked-io unsetenv update-copyright verify vsnprintf-posix vsprintf-posix warnings xalloc xalloc-die xmemdup0 xstrndup
1421 ## begin gnulib module realloc-posix
1424 EXTRA_DIST += realloc.c
1426 EXTRA_libbison_a_SOURCES += realloc.c
1428 ## end gnulib module realloc-posix
H A Dlocalcharset.c224 res_ptr = (char *) realloc (res_ptr, res_size + 1);
H A Dprintf-parse.c62 /* malloc(), realloc(), free(). */
116 ? realloc (a->arg, memory_size) \
593 ? realloc (d->dir, memory_size)
H A Drealloc.c0 /* realloc() function that is glibc compatible.
24 /* Only the AC_FUNC_REALLOC macro defines 'realloc' already in config.h. */
25 #ifdef realloc
27 /* Whereas the gnulib module 'realloc-gnu' defines HAVE_REALLOC_GNU. */
56 /* In theory realloc might fail, so don't rely on it to free. */
71 result = realloc (p, n);
H A Dspawn_faction_init.c35 void *newmem = realloc (file_actions->_actions,
H A Dstdlib.in.h271 rely on GNU or POSIX semantics for malloc and realloc (for example,
273 realloc to be redefined. */
713 # undef realloc
714 # define realloc rpl_realloc
716 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
717 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
719 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
721 _GL_CXXALIASWARN (realloc);
723 # undef realloc
724 /* Assume realloc i
[all...]
H A Dvasnprintf.c71 #include <stdlib.h> /* abort(), malloc(), realloc(), free() */
1862 memory = (DCHAR_T *) realloc (result, memory_size); \
5380 (because it uses realloc(). */
5555 memory = (DCHAR_T *) realloc (result, (length + 1) * sizeof (DCHAR_T));
H A Dvbitset.c86 = realloc (VBITSET_WORDS (src), size * sizeof (bitset_word));
101 = realloc (VBITSET_WORDS (src), newsize * sizeof (bitset_word));
H A Dxmalloc.c55 /* The GNU and C99 realloc behaviors disagree here. Act like
56 GNU, even if the underlying realloc is C99. */
61 p = realloc (p, n);
/external/bison/lib/glthread/
H A Dlock.c706 (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE));
/external/bison/linux-lib/
H A Dstdlib.h593 rely on GNU or POSIX semantics for malloc and realloc (for example,
595 realloc to be redefined. */
1035 # undef realloc
1036 # define realloc rpl_realloc
1038 _GL_FUNCDECL_RPL (realloc, void *, (void *ptr, size_t size));
1039 _GL_CXXALIAS_RPL (realloc, void *, (void *ptr, size_t size));
1041 _GL_CXXALIAS_SYS (realloc, void *, (void *ptr, size_t size));
1043 _GL_CXXALIASWARN (realloc); variable
1045 # undef realloc macro
1046 /* Assume realloc i
[all...]
/external/bison/src/
H A Dscan-code.c280 * and can realloc() it to grow it, and should free() it to
2119 * immediate realloc on the next call.
2466 return (void *) realloc( (char *) ptr, size );
H A Dscan-gram.c280 * and can realloc() it to grow it, and should free() it to
3157 * immediate realloc on the next call.
3504 return (void *) realloc( (char *) ptr, size );
H A Dscan-skel.c280 * and can realloc() it to grow it, and should free() it to
1906 * immediate realloc on the next call.
2253 return (void *) realloc( (char *) ptr, size );
/external/blktrace/
H A Dblkiomon.c489 pdu_buf = realloc(pdu_buf, bit->pdu_len);
H A Dblkparse.c330 cpus = realloc(cpus, size);
374 devices = realloc(devices, size);
2192 void *ptr = realloc(bit, sizeof(*bit) + pdu_len);
2339 void *ptr = realloc(bit, sizeof(*bit) + pdu_len);

Completed in 2461 milliseconds

1234567891011>>