Lines Matching refs:p
35 void *p, *q; in do_test() local
46 p = malloc (-1); in do_test()
50 if (p != NULL) in do_test()
53 if (p == NULL && save != ENOMEM) in do_test()
56 p = malloc (10); in do_test()
57 if (p == NULL) in do_test()
61 p = realloc (p, 0); in do_test()
62 if (p != NULL) in do_test()
65 p = malloc (0); in do_test()
66 if (p == NULL) in do_test()
69 p = realloc (p, 0); in do_test()
70 if (p != NULL) in do_test()
73 p = malloc (513 * 1024); in do_test()
74 if (p == NULL) in do_test()
88 free (p); in do_test()