HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 76 - 100 of 1409) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
pdb-realloc2.c 2 /* A test which involves copying (using realloc) a block containing
59 p = realloc(p, size+i);
malloc2.stderr.exp 7 Invalid free() / delete / delete[] / realloc()
suppfree.stderr.exp 1 Invalid free() / delete / delete[] / realloc()
  /external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 54 return REALLOC(p, n | ALLOC_NO_ZMEM);
62 #define realloc(p, n) reallocBrew(p, n) macro
  /ndk/sources/host-tools/sed-4.2.1/lib/
stdlib.in.h 106 # undef realloc
107 # define realloc rpl_realloc
108 extern void * realloc (void *ptr, size_t size);
111 # undef realloc
112 # define realloc(p,s) \
113 (GL_LINK_WARNING ("realloc is not POSIX compliant everywhere - " \
114 "use gnulib module realloc-posix for portability"), \
115 realloc (p, s))
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libmemusage.so 
libanl-2.7.so 
libanl.so 
libanl.so.1 
libnss_compat-2.7.so 
libnss_compat.so 
libnss_compat.so.2 
libnss_files-2.7.so 
libnss_files.so 
libnss_files.so.2 
libnss_hesiod-2.7.so 
libnss_hesiod.so 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/lib/
libmemusage.so 
  /bionic/libc/bionic/
dlmalloc.h 42 #define dlrealloc realloc
87 allocated using malloc or a related routine such as realloc.
101 realloc(void* p, size_t n)
110 If p is null, realloc is equivalent to malloc.
112 If space is not available, realloc returns null, errno is set (if on
116 space is lopped off and freed if possible. realloc with a size
119 The old unix realloc convention of allowing the last-free'd chunk
120 to be used as an argument to realloc is not supported.
172 number of bytes allocated by malloc, realloc etc., is less than this
217 by malloc, realloc etc., is less than this value. Unlike mallinfo
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeparent.c 141 list->parents = realloc (list->parents, alloc * sizeof (XdgMimeParents));
168 list->parents = realloc (list->parents,
185 entry->parents = realloc (entry->parents,
192 list->parents = realloc (list->parents,
  /external/clang/test/Analysis/
unix-fns.c 14 void *realloc(void *, size_t);
92 char *foo = realloc(ptr, 0); // expected-warning{{Call to 'realloc' has an allocation size of 0 bytes}}
98 char *foo = realloc(ptr, size); // no-warning
  /external/icu4c/tools/genrb/
ustr.h 38 /* A C representation of a string "object" (to avoid realloc all the time) */
  /external/icu4c/tools/tzcode/
ialloc.c 42 return realloc((void *) pointer, (size_t) nonzero(size));
  /external/linux-tools-perf/util/
alias.c 43 *argv = realloc(*argv, sizeof(char*) * size);
  /external/skia/src/gpu/
GrAllocPool.h 28 * passed to realloc/free/delete or any other function that assumes the

Completed in 363 milliseconds

1 2 34 5 6 7 8 91011>>