Searched refs:debug_calloc (Results 1 – 4 of 4) sorted by relevance
/bionic/libc/malloc_debug/ |
D | exported64.map | 4 debug_calloc;
|
D | exported32.map | 4 debug_calloc;
|
D | malloc_debug.cpp | 93 void* debug_calloc(size_t nmemb, size_t bytes); 765 void* debug_calloc(size_t nmemb, size_t bytes) { in debug_calloc() function
|
/bionic/libc/malloc_debug/tests/ |
D | malloc_debug_unit_tests.cpp | 60 void* debug_calloc(size_t, size_t); 174 pointer = reinterpret_cast<uint8_t*>(debug_calloc(1, alloc_size)); in VerifyAllocCalls() 371 pointer = debug_calloc(1, 20); in TEST_F() 426 pointer = reinterpret_cast<uint8_t*>(debug_calloc(1, 100)); in TEST_F() 525 pointer = reinterpret_cast<uint8_t*>(debug_calloc(1, 100)); in TEST_F() 1922 pointer = debug_calloc(1, SIZE_MAX); in TEST_F() 1926 pointer = debug_calloc(SIZE_MAX, 1); in TEST_F() 1930 pointer = debug_calloc(SIZE_MAX/100, 100); in TEST_F() 1934 pointer = debug_calloc(100, SIZE_MAX/100); in TEST_F() 1940 pointer = debug_calloc(sqrt_size_t + 1, sqrt_size_t); in TEST_F() [all …]
|