Lines Matching refs:p
35 void *p, *q; in do_test() local
45 p = malloc (-1); in do_test()
48 if (p != NULL) in do_test()
53 p = malloc (10); in do_test()
54 if (p == NULL) in do_test()
57 p = realloc (p, 0); in do_test()
58 if (p != NULL) in do_test()
61 p = malloc (0); in do_test()
62 if (p == NULL) in do_test()
65 p = realloc (p, 0); in do_test()
66 if (p != NULL) in do_test()
73 p = malloc (512); in do_test()
74 if (p == NULL) in do_test()
83 if (realloc (p, -256) != NULL) in do_test()
89 free (p); in do_test()
91 p = malloc (512); in do_test()
92 if (p == NULL) in do_test()
101 if (realloc (p, -1) != NULL) in do_test()
107 free (p); in do_test()