HomeSort by: relevance | last modified time | path
    Searched defs:Negated (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
AVRMCExpr.h 55 bool isNegated() const { return Negated; }
56 void setNegated(bool negated = true) { Negated = negated; }
82 bool Negated;
85 explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated)
86 : Kind(Kind), SubExpr(Expr), Negated(Negated) {}
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineNegator.cpp 82 "Negator: Number of new negated instructions created, total");
87 "Negator: Number of new negated instructions created in successful "
148 // Integral constants can be freely negated.
280 // All incoming values are indeed negatible. Create negated PHI node.
382 NegatedOps.emplace_back(NegOp); // Successfully negated operand!
478 Value *Negated = negate(Root, /*Depth=*/0);
479 if (!Negated) {
486 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated);
513 // already specified when producing negated instructions.
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ARMTargetParser.cpp 461 bool Negated = stripNegationPrefix(ArchExt);
464 return StringRef(Negated ? AE.NegFeature : AE.Feature);
505 const bool Negated = stripNegationPrefix(ArchExt);
512 if (Negated) {
527 if (Negated) {
532 } else if (Negated) {
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 276 bool Negated;
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...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonConstPropagation.cpp 2272 bool Negated = false;
2277 Negated = true;
2323 if ((!Negated && CTrue) || (Negated && CFalse))
2325 else if ((!Negated && CFalse) || (Negated && CTrue))

Completed in 21 milliseconds