Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dexported64.map21 debug_posix_memalign;
Dexported32.map21 debug_posix_memalign;
Dmalloc_debug.cpp97 int debug_posix_memalign(void** memptr, size_t alignment, size_t size);
875 int debug_posix_memalign(void** memptr, size_t alignment, size_t size) { in debug_posix_memalign() function
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp62 int debug_posix_memalign(void**, size_t, size_t);
2091 TEST_F(MallocDebugTest, debug_posix_memalign) { in TEST_F() argument
2095 ASSERT_EQ(0, debug_posix_memalign(&pointer, 32, 300)); in TEST_F()
2099 ASSERT_EQ(EINVAL, debug_posix_memalign(&pointer, 11, 300)); in TEST_F()
2101 ASSERT_EQ(ENOMEM, debug_posix_memalign(&pointer, 16, SIZE_MAX)); in TEST_F()
2171 ASSERT_EQ(0, debug_posix_memalign(&pointer, 32, 50)); in VerifyRecordAllocs()