/bionic/linker/ |
D | linker_memory.cpp | 78 void* realloc(void* p, size_t byte_count) { in realloc() function 79 return get_allocator().realloc(p, byte_count); in realloc()
|
D | linker_allocator.h | 142 void* realloc(void* ptr, size_t size);
|
D | linker_allocator.cpp | 292 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 | 92 uint32_t* reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 1024)); in TEST() 103 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 62)); in TEST() 107 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 4000)); in TEST() 119 reallocated_ptr = reinterpret_cast<uint32_t*>(allocator.realloc(array, 64000)); in TEST() 127 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 | 66 MallocRealloc realloc; member
|
/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 | 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/include/ |
D | malloc.h | 39 void* realloc(void* p, size_t byte_count) __BIONIC_ALLOC_SIZE(2) __wur;
|
/bionic/libc/bionic/ |
D | malloc_common.cpp | 64 Malloc(realloc), 145 extern "C" void* realloc(void* old_mem, size_t bytes) { in realloc() function 146 auto _realloc = __libc_globals->malloc_dispatch.realloc; in realloc() 150 return Malloc(realloc)(old_mem, bytes); in realloc() 279 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()
|
D | fts.c | 969 p = realloc(sp->fts_path, sp->fts_pathlen); in fts_palloc()
|
/bionic/libc/dns/net/ |
D | getservent.c | 83 p2 = realloc( (char*)rs->servent.s_aliases, total ); in getservent_r()
|
D | gethnamaddr.c | 100 char **xptr = realloc(arr, (siz + 10) * sizeof(*arr)); \
|
/bionic/libc/malloc_debug/ |
D | README.md | 23 * `realloc` 128 filled with the value 0xeb. When doing a realloc to a larger size, the bytes 284 new\_pointer = realloc(old\_pointer, size) 286 **THREAD\_ID**: realloc new\_pointer old\_pointer size 290 186: realloc 0xb609f080 0xb603e9a0 12 352 … 04-15 12:00:31.304 7412 7412 E malloc_debug: +++ ALLOCATION 0x12345678 USED AFTER FREE (realloc) 354 Would indicate that the application called the *realloc* function
|
D | malloc_debug.cpp | 486 return g_dispatch->realloc(pointer, bytes); in debug_realloc() 566 new_pointer = g_dispatch->realloc(pointer, real_size); in debug_realloc()
|
D | README_marshmallow_and_earlier.md | 25 * `realloc`
|
/bionic/libc/tools/ |
D | posix-2013.txt | 841 realloc
|
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | regcomp.c | 1423 cs->multis = realloc(cs->multis, cs->smultis); in mcadd() 1463 cs->multis = realloc(cs->multis, cs->smultis);
|
/bionic/libc/ |
D | libc.mips64.map | 776 realloc;
|