Lines Matching refs:my_malloc
7 void __attribute((ownership_returns(malloc))) *my_malloc(size_t);
61 int *p = my_malloc(12); in af1()
66 int *p = my_malloc(12); in af1_b()
70 myglobalpointer = my_malloc(12); // no-warning in af1_c()
75 mystuff.somefield = my_malloc(12); in af1_d()
80 *pp = my_malloc(42); // no-warning in af1_e()
84 somestuff->somefield = my_malloc(12); // no-warning in af1_f()
89 *pps = my_malloc(sizeof(struct stuff)); // no-warning in af1_g()
90 (*pps)->somefield = my_malloc(42); // no-warning in af1_g()
94 int *p = my_malloc(12); in af2()
100 int *p = my_malloc(12); in af2b()
106 int *p = my_malloc(12); in af2c()
112 int *p = my_malloc(12); in af2d()
119 int *p = my_malloc(12); in af2e()
127 int *p = my_malloc(12); in af3()
133 int *p = my_malloc(12); in af4()
140 int *p = my_malloc(12); in af5()