/system/extras/libpagemap/ |
pm_process.c | 249 new_maps = realloc(maps, 2 * maps_size * sizeof(pm_map_t*)); 285 new_maps = realloc(maps, maps_count * sizeof(pm_map_t*));
|
/external/valgrind/main/coregrind/m_replacemalloc/ |
vg_replace_malloc.c | 84 10090 REALLOC 184 __builtin_delete, calloc, realloc, memalign, and friends. 574 /*---------------------- realloc ----------------------*/ 603 #define REALLOC(soname, fnname) \ 613 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \ 631 REALLOC(VG_Z_LIBC_SONAME, realloc); 634 REALLOC(VG_Z_LIBC_SONAME, realloc); [all...] |
/ndk/sources/host-tools/sed-4.2.1/sed/ |
utils.c | 463 /* Panic on failing realloc */ 478 ret = realloc(ptr, size); 563 try = realloc(b->b, alen); /* Note: *not* the REALLOC() macro! */ 567 try = REALLOC(b->b, alen, char);
|
/external/valgrind/unittest/ |
posix_tests.cc | 255 int *REALLOC; 273 (*REALLOC)++; 291 REALLOC = (int*)realloc(NULL, sizeof(int)); 308 ANNOTATE_EXPECT_RACE(REALLOC, "real race on a realloc-ed object"); 327 free(REALLOC);
|
/external/bluetooth/glib/gio/ |
gmemoryoutputstream.c | 168 * @realloc_fn: a function with realloc() semantics to be called when 181 * stream = g_memory_output_stream_new (NULL, 0, realloc, free); 239 * growable (no realloc was passed to g_memory_output_stream_new()) then
|
/external/bluetooth/glib/glib/gnulib/ |
printf-parse.c | 39 /* malloc(), realloc(), free(). */ 76 ? realloc (a->arg, a_allocated * sizeof (argument)) \ 478 memory = realloc (d->dir, d_allocated * sizeof (char_directive));
|
/external/chromium/base/ |
pickle.cc | 68 CHECK(resized); // Realloc failed. 92 CHECK(resized); // Realloc failed. 407 void* p = realloc(header_, new_capacity);
|
/external/chromium/third_party/libevent/ |
epoll.c | 167 fds = realloc(epollop->fds, nfds * sizeof(struct evepoll)); 169 event_warn("realloc"); 251 new_events = realloc(epollop->events,
|
kqueue.c | 177 newchange = realloc(kqop->changes, 185 newresult = realloc(kqop->events, 190 * the next realloc will pick it up.
|
/external/e2fsprogs/intl/ |
printf-parse.c | 41 /* malloc(), realloc(), free(). */ 99 ? realloc (a->arg, memory_size) \ 512 memory = realloc (d->dir, memory_size);
|
/external/elfutils/libdwfl/ |
segment.c | 80 GElf_Addr *naddr = realloc (dwfl->lookup_addr, sizeof naddr[0] * n); 83 int *nsegndx = realloc (dwfl->lookup_segndx, sizeof nsegndx[0] * n); 98 dwfl->lookup_module = realloc (dwfl->lookup_module,
|
/external/valgrind/main/drd/ |
drd_malloc_wrappers.c | 172 * Wrapper for realloc(). Returns a pointer to the new block of memory, or 174 * - realloc(NULL, size) has the same effect as malloc(size). 175 * - realloc(p, 0) has the same effect as free(p).
|
drd_vc.c | 263 str = VG_(realloc)("drd.vc.aprint.1", str, reserved); 273 str = VG_(realloc)("drd.vc.aprint.2", str, reserved); 326 vc->vc = VG_(realloc)("drd.vc.vr.1",
|
/bionic/libc/netbsd/net/ |
getservent.c | 82 p2 = realloc( (char*)rs->servent.s_aliases, total );
|
/bionic/libc/stdlib/ |
setenv.c | 68 P = (char **)realloc(lastenv, sizeof(char *) * (cnt + 2));
|
/bionic/libstdc++/include/ |
cstdlib | 95 using ::realloc;
|
/dalvik/vm/ |
LinearAlloc.h | 76 * Mark a chunk of memory from Alloc or Realloc as read-only. This must
|
/dalvik/vm/test/ |
TestHash.cpp | 179 /* force a table realloc to exercise tombstone removal */
|
/device/moto/stingray/ril/ |
libmoto_intfutil_ril.so | |
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
memory.sgml | 185 Attempts to realloc @mem to a new size, @n_bytes, and returns %NULL 291 @realloc: function to use for reallocating memory. 302 provide malloc(), realloc(), and free() functions; GLib can provide default 303 implementations of the others. The malloc() and realloc() implementations
|
/external/bluetooth/glib/glib/ |
gmem.h | 86 gpointer (*realloc) (gpointer mem, member in struct:_GMemVTable
|
/external/chromium/base/allocator/ |
generic_allocators.cc | 97 return realloc(p, size);
|
/external/chromium/crypto/ |
cssm_init.cc | 32 return realloc(ptr, size);
|
/external/chromium/net/base/ |
io_buffer.h | 104 // realloc memory to the specified capacity.
|
/external/dbus/dbus/ |
dbus-marshal-header.h | 51 * independently realloc it.
|