Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DPointerArithChecker.cpp60 mutable llvm::SmallSet<IdentifierInfo *, 8> AllocFunctions; member in __anon2dc628270211::PointerArithChecker
208 if (!AllocFunctions.empty()) in initAllocIdentifiers()
210 AllocFunctions.insert(&C.Idents.get("alloca")); in initAllocIdentifiers()
211 AllocFunctions.insert(&C.Idents.get("malloc")); in initAllocIdentifiers()
212 AllocFunctions.insert(&C.Idents.get("realloc")); in initAllocIdentifiers()
213 AllocFunctions.insert(&C.Idents.get("calloc")); in initAllocIdentifiers()
214 AllocFunctions.insert(&C.Idents.get("valloc")); in initAllocIdentifiers()
225 if (AllocFunctions.count(FunI) == 0) in checkPostStmt()