Lines Matching refs:ptr2
138 test_struct_small* ptr2 = in TEST() local
143 ASSERT_TRUE(ptr2 != nullptr); in TEST()
144 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr2) % 16); in TEST()
146 ASSERT_EQ(reinterpret_cast<uintptr_t>(ptr1)+16, reinterpret_cast<uintptr_t>(ptr2)); in TEST()
150 allocator.free(ptr2); in TEST()
159 test_struct_huge* ptr2 = in TEST() local
164 ASSERT_TRUE(ptr2 != nullptr); in TEST()
165 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr2) % 16); in TEST()
168 reinterpret_cast<uintptr_t>(ptr1)/kPageSize != reinterpret_cast<uintptr_t>(ptr2)/kPageSize); in TEST()
169 allocator.free(ptr2); in TEST()
178 test_struct_large* ptr2 = in TEST() local
183 ASSERT_TRUE(ptr2 != nullptr); in TEST()
184 ASSERT_EQ(0U, reinterpret_cast<uintptr_t>(ptr2) % 16); in TEST()
186 ASSERT_EQ(reinterpret_cast<uintptr_t>(ptr1) + 1024, reinterpret_cast<uintptr_t>(ptr2)); in TEST()
211 allocator.free(ptr2); in TEST()