Home
last modified time | relevance | path

Searched refs:debug_realloc (Results 1 – 6 of 6) sorted by relevance

/aosp_15_r20/bionic/libc/malloc_debug/tests/
H A Dmalloc_debug_unit_tests.cpp64 void* debug_realloc(void*, size_t);
231 pointer = reinterpret_cast<uint8_t*>(debug_realloc(nullptr, alloc_size)); in VerifyAllocCalls()
239 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, alloc_size * 2)); in VerifyAllocCalls()
249 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, alloc_size)); in VerifyAllocCalls()
255 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 0)); in VerifyAllocCalls()
456 pointer = debug_realloc(nullptr, 30); in TEST_F()
459 pointer = debug_realloc(pointer, 100); in TEST_F()
505 pointer = reinterpret_cast<uint8_t*>(debug_realloc(nullptr, 100)); in TEST_F()
510 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 200)); in TEST_F()
514 pointer = reinterpret_cast<uint8_t*>(debug_realloc(pointer, 0)); in TEST_F()
[all …]
/aosp_15_r20/external/mesa3d/src/util/
H A Dos_memory_debug.h57 debug_realloc(const char *file, unsigned line, const char *function,
90 debug_realloc( __FILE__, __LINE__, __func__, _ptr, _old_size, _new_size )
H A Du_debug_memory.c223 debug_realloc(const char *file, unsigned line, const char *function, in debug_realloc() function
/aosp_15_r20/bionic/libc/malloc_debug/
H A Dexported64.map22 debug_realloc;
H A Dexported32.map23 debug_realloc;
H A Dmalloc_debug.cpp184 void* debug_realloc(void* pointer, size_t bytes);
790 void* debug_realloc(void* pointer, size_t bytes) { in debug_realloc() function