Searched refs:debug_calloc (Results 1 – 4 of 4) sorted by relevance
/aosp12/bionic/libc/malloc_debug/ |
H A D | exported64.map | 4 debug_calloc;
|
H A D | exported32.map | 4 debug_calloc;
|
H A D | malloc_debug.cpp | 93 void* debug_calloc(size_t nmemb, size_t bytes); 764 void* debug_calloc(size_t nmemb, size_t bytes) { in debug_calloc() function
|
/aosp12/bionic/libc/malloc_debug/tests/ |
H A D | malloc_debug_unit_tests.cpp | 60 void* debug_calloc(size_t, size_t); 371 pointer = debug_calloc(1, 20); 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() 2007 pointer = debug_calloc(10, 20); in TEST_F() 2049 pointer = debug_calloc(1, 1U << 31); in TEST_F() 2052 pointer = debug_calloc(1U << 31, 1); in TEST_F() [all …]
|