Home | History | Annotate | Download | only in tests

Lines Matching full:int_ptr

4239   int *int_ptr = new int;
4244 EXPECT_TRUE(__sanitizer_get_ownership(int_ptr));
4245 EXPECT_EQ(sizeof(*int_ptr), __sanitizer_get_allocated_size(int_ptr));
4262 delete int_ptr;
4300 int *int_ptr = Ident(new int);
4303 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr));
4305 delete int_ptr;