Lines Matching refs:malloc
6 void *malloc(size_t);
12 int *p = malloc(12); in diagnosticTest()
20 A = malloc(2*sizeof(int*)); in myArrayAllocation()
25 char * buf = malloc(100); in reallocDiagnostics()
36 void *x = malloc(100); in wrapper()
54 *x = malloc(100); in my_malloc_and_free()
75 char *buf = (char *)malloc(100); in reallocIntra()
82 return (char*)malloc(12); in malloc_wrapper_ret()
99 int *p = malloc(sizeof(int)); in call_myfree_takingblock()
108 p = (int*)malloc(12); in LeakedSymbol()
118 char *x = (char*)malloc(12); in function_with_leak1()
126 char *x = (char*)malloc(12); in function_with_leak2()
134 char *x = (char*)malloc(12); in function_with_leak3()
143 char *x = (char*)malloc(12); in function_with_leak4()
157 char *x = (char*)malloc(12); in function_with_leak5()
168 char *x = (char*)malloc(12); in function_with_leak6()
181 return (char*)malloc(12); in function_with_leak7()
190 int *p = malloc(12); in my_malloc()
202 w.p = malloc(12); in my_malloc_into_struct()