Home | History | Annotate | Download | only in tests

Lines Matching defs:ptr2

359   int *ptr2 = Ident((int*)malloc(0));
360 ptr2 = Ident((int*)realloc(ptr2, sizeof(*ptr2)));
361 *ptr2 = 42;
362 EXPECT_EQ(42, *ptr2);
363 free(ptr2);