Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp844 uint8_t* pointer2_large = reinterpret_cast<uint8_t*>(debug_malloc(9000)); in TEST_F() local
845 ASSERT_TRUE(pointer2_large != nullptr); in TEST_F()
846 memset(pointer2_large, 0, 9000); in TEST_F()
847 debug_free(pointer2_large); in TEST_F()
849 pointer2_large[8200] = 0x78; in TEST_F()
876 … android::base::StringPrintf("6 malloc_debug +++ ALLOCATION %p USED AFTER FREE\n", pointer2_large); in TEST_F()