Home | History | Annotate | Download | only in tests

Lines Matching defs:ptr2

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