HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 1 - 25 of 942) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/e2fsprogs/e2fsck/
mtrace.awk 20 print "-", $2, "Realloc", NR, "was never alloc'd";
23 print "+", $2, "Realloc", NR, "duplicate:", allocated[$2];
30 # Ignore failed realloc attempts for now
  /external/chromium/net/base/
io_buffer.cc 24 // realloc will crash if it fails.
25 real_data_.reset(static_cast<char*>(realloc(real_data_.release(), capacity)));
  /external/icu4c/samples/layout/
arraymem.h 20 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /build/tools/apriori/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/iself/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/isprelinked/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/lsd/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size)
61 void *m = realloc(ptr, size);
62 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /build/tools/soslim/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /development/tools/yuv420sp2rgb/
debug.h 59 static inline void *REALLOC(void *ptr, unsigned int size) {
60 void *m = realloc(ptr, size);
61 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/elfcopy/
debug.h 57 static inline void *REALLOC(void *ptr, unsigned int size) {
58 void *m = realloc(ptr, size);
59 FAILIF(NULL == m, "realloc(%p, %d) failed!\n", ptr, size);
  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 34 #undef realloc macro
37 #define realloc g_realloc macro
  /external/libvpx/nestegg/halloc/src/
halloc.c 15 #include <stdlib.h> /* realloc */
90 /* realloc */
182 * of realloc(ptr, 0), which is defined in the standard
190 allocator = realloc;
195 if ((p = realloc(p, 0)))
197 /* realloc cannot be used as free() */
206 * free'ing realloc()
209 return realloc(ptr, n);
  /external/chromium/third_party/icu/source/test/letest/
letest.h 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /external/icu4c/test/letest/
letest.h 33 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/
libutil-2.7.so 
libutil.so 
libutil.so.1 
  /external/oprofile/libutil/
op_libiberty.h 46 realloc type functions are not suitable for attribute malloc since
68 #define xrealloc(p,s) realloc(p,s)
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 22 char *realloc ();
64 p = realloc (p, n);
  /external/bluetooth/glib/glib/
gmem.c 67 return realloc (mem, n_bytes);
74 # define standard_realloc realloc
79 # define standard_try_realloc realloc
91 return realloc (mem, n_bytes);
170 mem = glib_mem_vtable.realloc (mem, n_bytes);
271 if (vtable->malloc && vtable->realloc && vtable->free)
274 glib_mem_vtable.realloc = vtable->realloc;
278 glib_mem_vtable.try_realloc = vtable->try_realloc ? vtable->try_realloc : glib_mem_vtable.realloc;
282 g_warning (G_STRLOC ": memory allocation vtable lacks one of malloc(), realloc() or free()")
    [all...]
  /external/srec/portable/include/
pmemory.h 67 #define REALLOC(p, n) realloc(p, n)
87 #define realloc #error macro
125 * Portable realloc()
127 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize, L(__FILE__), __LINE__))
130 * Portable realloc()
132 #define REALLOC(ptr, newSize) (prealloc(ptr, newSize))
204 * Reallocates data. Similar to realloc.
224 * Frees data allocated through pmalloc, pcalloc or realloc.
  /external/bluetooth/glib/gio/xdgmime/
xdgmimealias.c 135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
150 list->aliases = realloc (list->aliases,
157 list->aliases = realloc (list->aliases,
xdgmimeicon.c 134 list->icons = realloc (list->icons, alloc * sizeof (XdgIcon));
149 list->icons = realloc (list->icons,
156 list->icons = realloc (list->icons,
  /external/chromium/base/third_party/xdg_mime/
xdgmimealias.c 135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias));
150 list->aliases = realloc (list->aliases,
157 list->aliases = realloc (list->aliases,
xdgmimeicon.c 134 list->icons = realloc (list->icons, alloc * sizeof (XdgIcon));
149 list->icons = realloc (list->icons,
156 list->icons = realloc (list->icons,

Completed in 1107 milliseconds

1 2 3 4 5 6 7 8 91011>>