Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp996 static inline bool isAllocated(const RefState *RSCurr, const RefState *RSPrev, in isAllocated() argument
1001 (!RSPrev || in isAllocated()
1002 !(RSPrev->isAllocated() || RSPrev->isAllocatedOfSizeZero()))); in isAllocated()
1007 static inline bool isReleased(const RefState *RSCurr, const RefState *RSPrev, in isReleased() argument
1010 (RSCurr && RSCurr->isReleased()) && (!RSPrev || !RSPrev->isReleased()); in isReleased()
1018 const RefState *RSPrev, const Stmt *Stmt) { in isRelinquished() argument
1022 (!RSPrev || !RSPrev->isRelinquished())); in isRelinquished()
1030 const RefState *RSPrev, in hasReallocFailed() argument
1035 (RSPrev && in hasReallocFailed()
1036 !(RSPrev->isAllocated() || RSPrev->isAllocatedOfSizeZero()))); in hasReallocFailed()
[all …]