/hardware/ti/omap4-aah/domx/ |
Android.mk | 10 OMAP4_DEBUG_LDFLAGS:= $(foreach f, $(strip malloc realloc calloc free), -Wl,--wrap=$(f))
|
/hardware/ti/omap4-aah/ |
tm.c | 37 ptr[2] = realloc(ptr[2], 300);
|
/hardware/ti/omap4xxx/ |
tm.c | 37 ptr[2] = realloc(ptr[2], 300);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/lib32/ |
libutil-2.11.1.so | |
libutil.so | |
libutil.so.1 | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/ |
libutil-2.15.so | |
libutil.so | |
libutil.so.1 | |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
pcrt32.h | 15 #define _frealloc realloc
|
/art/runtime/ |
linear_alloc.h | 33 // Realloc never frees the input pointer, it is the caller's job to do this if necessary. 34 void* Realloc(Thread* self, void* ptr, size_t old_size, size_t new_size) REQUIRES(!lock_);
|
/external/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 13 // We simply define functions like malloc, free, realloc, etc. 70 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { 151 void *(*realloc)(void *oldMem, uptr bytes); 165 void *(*realloc)(void *oldMem, uptr bytes); 171 WRAP(realloc), WRAP(memalign), WRAP(malloc_usable_size)}; 176 WRAP(posix_memalign), WRAP(pvalloc), WRAP(realloc),
|
asan_malloc_win.cc | 84 void *realloc(void *ptr, size_t size) { function 102 return realloc(p, size); 114 // _expand is used in realloc-like functions to resize the buffer if possible. 151 __interception::OverrideFunction("realloc", (uptr)realloc); 152 __interception::OverrideFunction("_realloc_crt", (uptr)realloc);
|
/external/clang/test/Analysis/ |
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 167 q = realloc(q, 20); 184 realloc(p,0); 206 realloc(x,0);
|
malloc.c | 12 void *realloc(void *ptr, size_t size); 36 realloc(p,0); 37 realloc(p,0); // expected-warning{{Attempt to free released memory}} 42 int *q = realloc(p,0); // no-warning 49 char *q = (char*)realloc(p, sizeIn); 64 q = realloc(q, 20); 68 // p should be freed if realloc fails. 71 char *r = realloc(p, 12+1); 81 char *r = realloc(p, 0); 91 char *r = realloc(p, 0) [all...] |
/external/valgrind/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)
|
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
allocators.h | 28 Note that Malloc() and Realloc() are non-static but Free() is static.
46 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize);
71 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize) {
77 return std::realloc(originalPtr, newSize);
88 It does not free memory blocks. And Realloc() only allocate new memory.
190 void* Realloc(void* originalPtr, size_t originalSize, size_t newSize) {
211 // Realloc process: allocate and copy memory, do not free original buffer.
|
/external/jemalloc/test/unit/ |
decay.c | 84 /* realloc(). */ 87 p = realloc(NULL, huge0); 88 assert_ptr_not_null(p, "Unexpected realloc() failure"); 90 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()"); 93 p = realloc(p, huge0); 94 assert_ptr_not_null(p, "Unexpected realloc() failure"); 96 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()"); 99 realloc(p, 0); 101 assert_u32_ne(tick1, tick0, "Expected ticker to tick during realloc()");
|
/bionic/linker/tests/ |
linker_memory_allocator_test.cpp | 80 uint32_t* reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 1024)); 91 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 62)); 95 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 4000)); 107 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 64000)); 115 ASSERT_EQ(nullptr, allocator.realloc(reallocated_ptr, 0));
|
/external/icu/icu4c/source/common/ |
uvectr64.cpp | 149 // We keep the original contents on the memory failure on realloc. 163 if (limit > (int32_t)(INT32_MAX / sizeof(int64_t))) { // integer overflow check for realloc 164 // Something is very wrong, don't realloc, leave capacity and maxCapacity unchanged 174 // Realloc the storage to the new, smaller size. 177 // Realloc to smaller failed.
|
/prebuilts/gdb/darwin-x86/include/python2.7/ |
pymem.h | 22 Never mix calls to PyMem_ with calls to the platform malloc/realloc/ 44 Functions supplying platform-independent semantics for malloc/realloc/ 47 may be returned), even if the platform malloc and realloc don't. 56 /* Starting from Python 1.6, the wrappers Py_{Malloc,Realloc,Free} are 77 : realloc((p), (n) ? (n) : 1))
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
pymem.h | 22 Never mix calls to PyMem_ with calls to the platform malloc/realloc/ 44 Functions supplying platform-independent semantics for malloc/realloc/ 47 may be returned), even if the platform malloc and realloc don't. 56 /* Starting from Python 1.6, the wrappers Py_{Malloc,Realloc,Free} are 77 : realloc((p), (n) ? (n) : 1))
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
pymem.h | 22 Never mix calls to PyMem_ with calls to the platform malloc/realloc/ 44 Functions supplying platform-independent semantics for malloc/realloc/ 47 may be returned), even if the platform malloc and realloc don't. 56 /* Starting from Python 1.6, the wrappers Py_{Malloc,Realloc,Free} are 77 : realloc((p), (n) ? (n) : 1))
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
pymem.h | 22 Never mix calls to PyMem_ with calls to the platform malloc/realloc/ 44 Functions supplying platform-independent semantics for malloc/realloc/ 47 may be returned), even if the platform malloc and realloc don't. 56 /* Starting from Python 1.6, the wrappers Py_{Malloc,Realloc,Free} are 77 : realloc((p), (n) ? (n) : 1))
|
/system/extras/memory_replay/tests/ |
ActionTest.cpp | 96 TEST(ActionTest, realloc) { 99 Action* action = Action::CreateAction(0x1234, "realloc", line, memory); 112 action = Action::CreateAction(0x1234, "realloc", null_line, memory); 125 Action* action = Action::CreateAction(0x1234, "realloc", line1, memory); 129 action = Action::CreateAction(0x1234, "realloc", line2, memory);
|