Home
last modified time | relevance | path

Searched refs:my_malloc2 (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/clang/test/Analysis/
H A Dmalloc-interprocedural.c20 static void *my_malloc2(int elevel, size_t size) { in my_malloc2() function
44 void *data = my_malloc2(1, 4); in testUniqueingByallocationSiteInTopLevelFunction()
47 data = my_malloc2(1, 4); in testUniqueingByallocationSiteInTopLevelFunction()
51 void *data = my_malloc2(1, 4); in test3()
53 data = my_malloc2(1, 4); in test3()
58 int *data = (int*)my_malloc2(1, 4); in test4()
60 data = (int *)my_malloc2(1, 4); in test4()
66 int *data = (int *)my_malloc2(1, 4); in test6()
H A Dmalloc-annotations.c17 void __attribute((ownership_returns(malloc, 1))) *my_malloc2(size_t);
62 int *p = my_malloc2(12); in n2af1()