Home | History | Annotate | Download | only in tests

Lines Matching full:int_ptr

390   int *int_ptr = new int[0];
392 EXPECT_TRUE(NULL != int_ptr);
394 EXPECT_NE(int_ptr, int_ptr2);
395 delete[] int_ptr;
406 int *int_ptr = Ident(new int);
409 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr));
415 delete int_ptr;