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

1 2 3 4 5 6 7 8 91011>>

  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 34 #undef realloc macro
37 #define realloc g_realloc macro
  /external/webkit/WebKitTools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 22 char *realloc ();
64 p = realloc (p, n);
  /external/icu4c/samples/layout/
arraymem.h 20 #define GROW_ARRAY(array,newSize) realloc((void *) (array), (newSize) * sizeof (array)[0])
  /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/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])
  /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/dropbear/libtomcrypt/src/headers/
tomcrypt_custom.h 15 #ifdef realloc
18 #define XREALLOC realloc
  /external/ipsec-tools/src/racoon/
gcmalloc.h 46 * malloc(), calloc(), realloc(), and free() entry points in the main
70 realloc(void *ptr, size_t size) function
117 #define racoon_realloc(old, sz) realloc((old), (sz))
  /external/qemu/
qemu-malloc.c 65 return oom_check(realloc(ptr, size));
67 return oom_check(realloc(ptr, size ? size : 1));
  /external/webkit/WebKitTools/DumpRenderTree/mac/
CheckedMalloc.cpp 65 savedRealloc = zone->realloc;
67 zone->realloc = checkedRealloc;
  /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,
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/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,
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,
  /bionic/libc/bionic/
malloc_debug_common.h 79 /* Address of the actual realloc routine. */
80 void* (*realloc)(void* oldMem, size_t bytes); member in struct:MallocDebug
  /bionic/libc/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet
  /bionic/libc/stdio/
asprintf.c 46 _base = realloc(f._bf._base, ret + 1);
vasprintf.c 44 _base = realloc(f._bf._base, ret + 1);
  /development/ndk/platforms/android-3/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet
  /external/elfutils/lib/
xmalloc.c 64 p = realloc (p, n);
  /external/freetype/include/freetype/
ftsystem.h 167 * realloc ::
176 FT_Realloc_Func realloc; member in struct:FT_MemoryRec_
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/
malloc.h 38 extern __mallocfunc void* realloc(void *, size_t);
85 number of bytes allocated via malloc (or realloc, etc) but not yet

Completed in 1171 milliseconds

1 2 3 4 5 6 7 8 91011>>