Searched refs:Negated (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.h54 bool isNegated() const { return Negated; }
55 void setNegated(bool negated = true) { Negated = negated; }
81 bool Negated; member in class:llvm::AVRMCExpr
84 explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated) argument
85 : Kind(Kind), SubExpr(Expr), Negated(Negated) {}
H A DAVRMCExpr.cpp39 bool Negated, MCContext &Ctx) {
40 return new (Ctx) AVRMCExpr(Kind, Expr, Negated);
99 if (Negated)
38 create(VariantKind Kind, const MCExpr *Expr, bool Negated, MCContext &Ctx) argument
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h276 bool Negated; member in class:clang::threadSafety::CapabilityExpr
279 CapabilityExpr(const til::SExpr *E, bool Neg) : CapExpr(E), Negated(Neg) {}
282 bool negative() const { return Negated; }
285 return CapabilityExpr(CapExpr, !Negated);
289 return (Negated == other.Negated) && sx::equals(CapExpr, other.CapExpr);
293 return (Negated == other.Negated) && sx::matches(CapExpr, other.CapExpr);
301 return (Negated == other.Negated)
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DTrustNonnullChecker.cpp210 /// If \p Negated is true, checks NullImplicationMap, and assumes
215 bool Negated) const {
220 Negated ? InputState->get<NonNullImplicationMap>(Antecedent)
228 if ((Negated && InputState->isNonNull(AntecedentV).isConstrainedTrue())
229 || (!Negated && InputState->isNull(AntecedentV).isConstrainedTrue())) {
231 State = InputState->assume(ConsequentS.castAs<DefinedSVal>(), Negated);
236 if (Negated) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DARMTargetParser.cpp451 bool Negated = stripNegationPrefix(ArchExt); local
454 return StringRef(Negated ? AE.NegFeature : AE.Feature);
501 const bool Negated = stripNegationPrefix(ArchExt); local
508 if (Negated && (AE.ID & ID) == ID && AE.NegFeature)
520 if (Negated) {
525 } else if (Negated) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp990 bool Negated = false;
996 Negated = true;
1028 // "Test.is(!Negated)" means "branch condition is true".
1029 if (!Test.is(!Negated)) {
H A DHexagonConstPropagation.cpp2267 bool Negated = false; local
2272 Negated = true;
2318 if ((!Negated && CTrue) || (Negated && CFalse))
2320 else if ((!Negated && CFalse) || (Negated && CTrue))
H A DHexagonHardwareLoops.cpp647 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header);
692 if (Negated)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp169 bool isInlineImmediate(const SDNode *N, bool Negated = false) const;
536 bool Negated) const {
541 if (Negated) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp12573 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed);
12574 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType()))
12576 return Success(Negated, E);

Completed in 234 milliseconds