Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Analysis/
DThreadSafety.cpp1423 static bool getStaticBooleanValue(Expr *E, bool &TCond) { in getStaticBooleanValue() argument
1425 TCond = false; in getStaticBooleanValue()
1428 TCond = BLE->getValue(); in getStaticBooleanValue()
1431 TCond = ILE->getValue().getBoolValue(); in getStaticBooleanValue()
1434 return getStaticBooleanValue(CE->getSubExpr(), TCond); in getStaticBooleanValue()
1474 bool TCond = false; in getTrylockCallExpr() local
1475 if (getStaticBooleanValue(BOP->getRHS(), TCond)) { in getTrylockCallExpr()
1476 if (!TCond) Negate = !Negate; in getTrylockCallExpr()
1479 TCond = false; in getTrylockCallExpr()
1480 if (getStaticBooleanValue(BOP->getLHS(), TCond)) { in getTrylockCallExpr()
[all …]