Lines Matching full:my_malloc
7 void __attribute((ownership_returns(malloc))) *my_malloc(size_t);
61 int *p = my_malloc(12);
66 int *p = my_malloc(12);
70 myglobalpointer = my_malloc(12); // no-warning
75 *pp = my_malloc(42); // no-warning
79 somestuff->somefield = my_malloc(12); // no-warning
84 *pps = my_malloc(sizeof(struct stuff)); // no-warning
85 (*pps)->somefield = my_malloc(42); // no-warning
89 int *p = my_malloc(12);
95 int *p = my_malloc(12);
101 int *p = my_malloc(12);
107 int *p = my_malloc(12);
114 int *p = my_malloc(12);
122 int *p = my_malloc(12);
128 int *p = my_malloc(12);
135 int *p = my_malloc(12);
272 mystuff.somefield = my_malloc(12);