Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Checkers/
DPointerArithChecker.cpp62 mutable llvm::SmallSet<IdentifierInfo *, 8> AllocFunctions; member in __anon4bc3673e0211::PointerArithChecker
211 if (!AllocFunctions.empty()) in initAllocIdentifiers()
213 AllocFunctions.insert(&C.Idents.get("alloca")); in initAllocIdentifiers()
214 AllocFunctions.insert(&C.Idents.get("malloc")); in initAllocIdentifiers()
215 AllocFunctions.insert(&C.Idents.get("realloc")); in initAllocIdentifiers()
216 AllocFunctions.insert(&C.Idents.get("calloc")); in initAllocIdentifiers()
217 AllocFunctions.insert(&C.Idents.get("valloc")); in initAllocIdentifiers()
228 if (AllocFunctions.count(FunI) == 0) in checkPostStmt()