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.cpp91 void* debug_memalign(size_t alignment, size_t bytes);
565 void* debug_memalign(size_t alignment, size_t bytes) { in debug_memalign() function
872 return debug_memalign(alignment, size); in debug_aligned_alloc()
884 *memptr = debug_memalign(alignment, size); in debug_posix_memalign()
949 return debug_memalign(pagesize, size); in debug_pvalloc()
956 return debug_memalign(getpagesize(), size); in debug_valloc()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp63 void* debug_memalign(size_t, size_t);
181 pointer = reinterpret_cast<uint8_t*>(debug_memalign(128, alloc_size)); in VerifyAllocCalls()
376 pointer = debug_memalign(128, 15); in TEST_F()
413 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100)); in TEST_F()
454 void* pointer = debug_memalign(1024, 100); in TEST_F()
510 pointer = reinterpret_cast<uint8_t*>(debug_memalign(alignment, 100)); in TEST_F()
2015 pointer = debug_memalign(128, 300); in TEST_F()
2055 pointer = debug_memalign(16, 1U << 31); in TEST_F()
2159 pointer = debug_memalign(16, 40); in VerifyRecordAllocs()