/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/docs/ |
ANDROID-MEMCHECK.TXT | 21 libc.so hooks up every memory allocation call (malloc, free, calloc, realloc, 35 When a free, or realloc operation is performed on the emulated system, emulator 36 can verify that the pointer passed to free/realloc matches the address of a
|
/external/webkit/Source/JavaScriptCore/wtf/wince/ |
MemoryManager.cpp | 25 #undef realloc macro 74 return realloc(p, size); 118 void *fastRealloc(void* p, size_t n) { return realloc(p, n); }
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
getdelim.c | 52 NULL), pointing to *N characters of space. It is realloc'ed as 74 new_lineptr = (char *) realloc (*lineptr, *n); 111 new_lineptr = (char *) realloc (*lineptr, needed);
|
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))
|
/device/samsung/crespo/sec_mm/sec_omx/sec_osal/ |
SEC_OSAL_ETC.c | 54 *ppLine = (char *)realloc(*ppLine, defaultBufferSize); 107 *ppLine = (char *)realloc(*ppLine, i);
|
/external/chromium/net/base/ |
io_buffer.cc | 88 // realloc will crash if it fails. 89 real_data_.reset(static_cast<char*>(realloc(real_data_.release(), capacity)));
|
/external/chromium/third_party/libevent/ |
poll.c | 229 tmp_event_set = realloc(pop->event_set, 232 event_warn("realloc"); 237 tmp_event_r_back = realloc(pop->event_r_back, 241 event_warn("realloc"); 246 tmp_event_w_back = realloc(pop->event_w_back, 251 event_warn("realloc"); 268 realloc(pop->idxplus1_by_fd, new_count * sizeof(int)); 270 event_warn("realloc");
|
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt_custom.h | 15 #ifdef realloc 18 #define XREALLOC realloc
|
/external/harfbuzz/src/ |
harfbuzz-impl.h | 88 #define REALLOC(_ptr,_newsz) \ 104 REALLOC(_ptr,(_newcnt)*sizeof(_type))
|
/external/valgrind/main/ |
exp-ptrcheck.supp | 2 lib-X11-used-old-pointer-after-realloc-1 9 lib-X11-used-old-pointer-after-realloc-2
|
/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);
|
/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
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/lib/ |
libmemusage.so | |
libanl-2.7.so | |
libanl.so | |
libanl.so.1 | |
/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/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/skia/gpu/include/ |
GrAllocPool.h | 35 * passed to realloc/free/delete or any other function that assumes the
|
/external/skia/src/ports/ |
SkMemory_brew.cpp | 40 void* p = REALLOC(addr, size | ALLOC_NO_ZMEM);
|
/external/valgrind/main/exp-ptrcheck/tests/ |
Makefile.am | 45 realloc.vgtest \ 46 realloc.stderr.exp-glibc25-x86 realloc.stderr.exp-glibc25-amd64 \ 69 pth_create pth_specific realloc \
|
zero.stderr.exp | 14 by 0x........: realloc (vg_replace_malloc.c:...)
|