HomeSort by relevance Sort by last modified time
    Searched full:realloc (Results 276 - 300 of 1526) sorted by null

<<11121314151617181920>>

  /system/core/debuggerd/
getevent.c 57 new_ufds = realloc(ufds, sizeof(ufds[0]) * (nfds + 1));
63 new_device_names = realloc(device_names, sizeof(device_names[0]) * (nfds + 1));
  /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*));
  /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/eigen/Eigen/src/Core/util/
Memory.h 86 /* ----- Hand made implementations of aligned malloc/free and realloc ----- */
108 * Since we know that our handmade version is based on std::realloc
109 * we can use std::realloc to implement efficient reallocation.
115 original = std::realloc(original,size+16);
123 *** Implementation of generic aligned realloc (when no realloc can be used)***
164 *** Implementation of portable aligned versions of malloc/free/realloc ***
248 result = std::realloc(ptr,new_size);
250 result = std::realloc(ptr,new_size);
314 return std::realloc(ptr, new_size)
    [all...]
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 84 10090 REALLOC
187 __builtin_delete, calloc, realloc, memalign, and friends.
605 /*---------------------- realloc ----------------------*/
634 #define REALLOC(soname, fnname) \
644 MALLOC_TRACE("realloc(%p,%llu)", ptrV, (ULong)new_size ); \
662 REALLOC(VG_Z_LIBC_SONAME, realloc);
663 REALLOC(SO_SYN_MALLOC, realloc);
666 REALLOC(VG_Z_LIBC_SONAME, realloc)
    [all...]
  /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/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/llvm/include/llvm/Analysis/
MemoryBuiltins.h 37 /// allocates or reallocates memory (either malloc, calloc, realloc, or strdup
43 /// NoAlias pointer (including malloc/calloc/realloc/strdup-like functions).
63 /// reallocates memory (such as realloc).
  /external/valgrind/main/drd/
drd_malloc_wrappers.c 171 * Wrapper for realloc(). Returns a pointer to the new block of memory, or
173 * - realloc(NULL, size) has the same effect as malloc(size).
174 * - realloc(p, 0) has the same effect as free(p).
drd_vc.c 262 str = VG_(realloc)("drd.vc.aprint.1", str, reserved);
272 str = VG_(realloc)("drd.vc.aprint.2", str, reserved);
325 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/generic/goldfish/opengl/shared/OpenglOsUtils/
osProcessUnix.cpp 58 argv = (char **)realloc(argv, argvSize * sizeof(char *)); \
  /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/clang/test/Analysis/
malloc-interprocedural.c 8 void *realloc(void *ptr, size_t size);
  /external/compiler-rt/lib/msan/
msan_allocator.cc 100 // Printf("realloc: old_size %zd new_size %zd\n", old_size, new_size);

Completed in 2788 milliseconds

<<11121314151617181920>>