Home | History | Annotate | Download | only in tests

Lines Matching full:int_ptr

395   int *int_ptr = new int[0];
397 EXPECT_TRUE(NULL != int_ptr);
399 EXPECT_NE(int_ptr, int_ptr2);
400 delete[] int_ptr;
411 int *int_ptr = Ident(new int);
414 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr));
420 delete int_ptr;