Home
last modified time | relevance | path

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

/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp61 mutable llvm::SmallSet<IdentifierInfo *, 8> AllocFunctions; member in __anonf5e25a0f0211::PointerArithChecker
202 if (!AllocFunctions.empty()) in initAllocIdentifiers()
204 AllocFunctions.insert(&C.Idents.get("alloca")); in initAllocIdentifiers()
205 AllocFunctions.insert(&C.Idents.get("malloc")); in initAllocIdentifiers()
206 AllocFunctions.insert(&C.Idents.get("realloc")); in initAllocIdentifiers()
207 AllocFunctions.insert(&C.Idents.get("calloc")); in initAllocIdentifiers()
208 AllocFunctions.insert(&C.Idents.get("valloc")); in initAllocIdentifiers()
219 if (AllocFunctions.count(FunI) == 0) in checkPostStmt()