/external/flac/include/share/ |
alloc.h | 63 // realloc(ptr, n1 * n2) 69 return n == ns ? realloc(ptr, ns) : NULL;
|
/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/Source/WebKit/efl/ewk/ |
ewk_tiled_private.h | 54 __tmp_ptr = realloc(ptr, size); \ 56 OOM("realloc", (size)); \
|
/external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/ |
xmalloc.c | 22 char *realloc (); 64 p = realloc (p, n);
|
/external/clang/test/Analysis/ |
malloc.c | 8 void *realloc(void *ptr, size_t size); 29 realloc(p,0); 30 realloc(p,0); // expected-warning{{Attempt to free released memory}} 35 int *q = realloc(p,0); // no-warning 42 char *q = (char*)realloc(p, sizeIn); 49 q = realloc(q, 20); 53 // p should be freed if realloc fails. 56 char *r = realloc(p, 12+1); 66 char *r = realloc(p, 0); 76 char *r = realloc(p, 0) [all...] |
malloc-annotations.c | 5 void *realloc(void *ptr, size_t size); 40 realloc(p,0); 41 realloc(p,0); // expected-warning{{Attempt to free released memory}} 46 int *q = realloc(p,0); // no-warning 169 q = realloc(q, 20); 186 realloc(p,0); 208 realloc(x,0);
|
/external/valgrind/main/massif/tests/ |
realloc.post.exp | 2 Command: ./realloc 43 ->100.00% (800B) 0x........: main (realloc.c:8) 45 ->00.00% (0B) 0x........: main (realloc.c:5) 54 ->100.00% (1,200B) 0x........: main (realloc.c:12) 56 ->00.00% (0B) 0x........: main (realloc.c:5) 58 ->00.00% (0B) 0x........: main (realloc.c:8) 60 ->00.00% (0B) 0x........: main (realloc.c:10)
|
/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/icu4c/common/ |
uvectr64.cpp | 146 // We keep the original contents on the memory failure on realloc. 160 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc 161 // Something is very wrong, don't realloc, leave capacity and maxCapacity unchanged 171 // Realloc the storage to the new, smaller size. 174 // Realloc to smaller failed.
|
/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/e2fsprogs/e2fsck/ |
mtrace.c | 57 /* This function is called when the block being alloc'd, realloc'd, or 115 hdr = (__ptr_t) realloc (ptr, size); 120 /* Failed 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/linux-tools-perf/util/ |
cpumap.c | 66 tmp = realloc(tmp_cpus, max_entries * sizeof(int)); 77 tmp = realloc(tmp_cpus, max_entries * sizeof(int)); 146 tmp = realloc(tmp_cpus, max_entries * sizeof(int));
|
values.c | 46 values->pid = realloc(values->pid, 48 values->tid = realloc(values->tid, 50 values->value = realloc(values->value, 83 values->counterrawid = realloc(values->counterrawid, 85 values->countername = realloc(values->countername, 91 values->value[i] = realloc(values->value[i],
|
/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);
|
/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/libmtp/examples/ |
newplaylist.c | 54 if ((tmp = realloc(ids, sizeof(uint32_t) * (idcount))) == NULL) { 55 printf("realloc failed\n");
|