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