/bionic/linker/ |
D | linker_memory.cpp | 31 void* realloc(void* p, size_t byte_count) { in realloc() function 32 return g_linker_allocator.realloc(p, byte_count); in realloc()
|
D | linker_allocator.h | 131 void* realloc(void* ptr, size_t size);
|
D | linker_allocator.cpp | 277 void* LinkerMemoryAllocator::realloc(void* ptr, size_t size) { in realloc() function in LinkerMemoryAllocator
|
/bionic/tests/ |
D | malloc_test.cpp | 122 ptr = (char*)realloc(ptr, 200); in TEST() 131 ptr = (char*)realloc(ptr, 300); in TEST() 139 ptr = (char*)realloc(ptr, 250); in TEST() 156 ptr = (char *)realloc(ptr, 200); in TEST() 172 ptr = (char *)realloc(ptr, 100); in TEST() 188 ptr = (char *)realloc(ptr, 100); in TEST() 195 ptr = (char*)realloc(ptr, 50); in TEST() 202 ptr = (char*)realloc(ptr, 150); in TEST() 210 ptr = (char*)realloc(ptr, 425); in TEST() 225 ptr = (char *)realloc(ptr, 200); in TEST() [all …]
|
/bionic/linker/tests/ |
D | linker_memory_allocator_test.cpp | 80 uint32_t* reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 1024)); in TEST() 91 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 62)); in TEST() 95 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 4000)); in TEST() 107 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 64000)); in TEST() 115 ASSERT_EQ(nullptr, allocator.realloc(reallocated_ptr, 0)); in TEST()
|
/bionic/libc/upstream-openbsd/lib/libc/stdlib/ |
D | reallocarray.c | 37 return realloc(optr, size * nmemb); in reallocarray()
|
/bionic/libc/private/ |
D | bionic_malloc_dispatch.h | 65 MallocRealloc realloc; member
|
/bionic/libc/bionic/ |
D | malloc_common.cpp | 64 Malloc(realloc), 136 extern "C" void* realloc(void* old_mem, size_t bytes) { in realloc() function 137 auto _realloc = __libc_globals->malloc_dispatch.realloc; in realloc() 141 return Malloc(realloc)(old_mem, bytes); in realloc() 267 if (!InitMallocFunction<MallocRealloc>(malloc_impl_handler, &table->realloc, in InitMalloc()
|
D | scandir.cpp | 56 reinterpret_cast<dirent**>(realloc(names_, new_capacity * sizeof(dirent*))); in Add()
|
/bionic/libc/include/ |
D | malloc.h | 28 extern void* realloc(void* p, size_t byte_count) __wur __attribute__((alloc_size(2)));
|
/bionic/libc/upstream-netbsd/lib/libc/stdlib/ |
D | reallocarr.c | 85 nptr = realloc(optr, number * size); in __weak_alias()
|
/bionic/libc/upstream-openbsd/lib/libc/stdio/ |
D | vasprintf.c | 44 _base = realloc(f._bf._base, ret + 1); in vasprintf()
|
D | asprintf.c | 48 _base = realloc(f._bf._base, ret + 1); in asprintf()
|
D | getdelim.c | 106 newb = realloc(*buf, newlen); in getdelim()
|
D | fgetln.c | 49 if ((p = realloc(fp->_lb._base, newsize)) == NULL) in __slbexpand()
|
D | open_memstream.c | 53 p = realloc(st->string, sz); in memstream_write()
|
D | fvwrite.c | 116 _base = realloc(fp->_bf._base, _size + 1); in __sfvwrite()
|
/bionic/libc/dns/net/ |
D | getservent.c | 83 p2 = realloc( (char*)rs->servent.s_aliases, total ); in getservent_r()
|
/bionic/libstdc++/include/ |
D | cstdlib | 92 using ::realloc;
|
/bionic/libc/malloc_debug/ |
D | README.md | 15 realloc 127 filled with the value 0xeb. When doing a realloc to a larger size, the bytes 258 04-15 12:00:31.304 7412 7412 E malloc_debug: +++ ALLOCATION 0x12345678 USED AFTER FREE (realloc) 261 Would indicate that the application called the <i>realloc</i> function
|
D | malloc_debug.cpp | 451 return g_dispatch->realloc(pointer, bytes); in debug_realloc() 520 new_pointer = g_dispatch->realloc(pointer, real_size); in debug_realloc()
|
/bionic/libc/ |
D | libc.arm64.map | 783 realloc;
|
D | libc.mips64.map | 783 realloc;
|
D | libc.x86_64.map | 783 realloc;
|
/bionic/libc/tools/ |
D | posix-2013.txt | 841 realloc
|