Home
last modified time | relevance | path

Searched refs:debug_memalign (Results 1 – 4 of 4) sorted by relevance

/bionic/libc/malloc_debug/
Dexported64.map20 debug_memalign;
Dexported32.map20 debug_memalign;
Dmalloc_debug.cpp188 void* debug_memalign(size_t alignment, size_t bytes);
687 void* debug_memalign(size_t alignment, size_t bytes) { in debug_memalign() function
1021 return debug_memalign(alignment, size); in debug_aligned_alloc()
1035 *memptr = debug_memalign(alignment, size); in debug_posix_memalign()
1101 return debug_memalign(pagesize, size); in debug_pvalloc()
1110 return debug_memalign(getpagesize(), size); in debug_valloc()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp66 void* debug_memalign(size_t, size_t);
223 pointer = reinterpret_cast<uint8_t*>(debug_memalign(128, alloc_size)); in VerifyAllocCalls()
445 pointer = debug_memalign(128, 15); in TEST_F()
482 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100)); in TEST_F()
523 void* pointer = debug_memalign(1024, 100); in TEST_F()
579 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100)); in TEST_F()
2085 pointer = debug_memalign(128, 300); in TEST_F()
2125 pointer = debug_memalign(16, 1U << 31); in TEST_F()
2230 pointer = debug_memalign(16, 40); in VerifyRecordAllocs()