Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/tests/
Dmalloc_debug_unit_tests.cpp835 uint8_t* pointer1_large = reinterpret_cast<uint8_t*>(debug_malloc(8192)); in TEST_F() local
836 ASSERT_TRUE(pointer1_large != nullptr); in TEST_F()
837 memset(pointer1_large, 0, 8192); in TEST_F()
838 debug_free(pointer1_large); in TEST_F()
840 pointer1_large[4095] = 0x90; in TEST_F()
841 pointer1_large[4100] = 0x56; in TEST_F()
842 pointer1_large[8191] = 0x89; in TEST_F()
870 … android::base::StringPrintf("6 malloc_debug +++ ALLOCATION %p USED AFTER FREE\n", pointer1_large); in TEST_F()