Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/
H A DAVRMCExpr.h55 bool isNegated() const { return Negated; } in isNegated()
56 void setNegated(bool negated = true) { Negated = negated; }
82 bool Negated; variable
85 explicit AVRMCExpr(VariantKind Kind, const MCExpr *Expr, bool Negated) in AVRMCExpr() argument
86 : Kind(Kind), SubExpr(Expr), Negated(Negated) {} in AVRMCExpr()
H A DAVRMCExpr.cpp40 bool Negated, MCContext &Ctx) { in create() argument
41 return new (Ctx) AVRMCExpr(Kind, Expr, Negated); in create()
103 if (Negated) in evaluateAsInt64()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h276 bool Negated; variable
279 CapabilityExpr(const til::SExpr *E, bool Neg) : CapExpr(E), Negated(Neg) {} in CapabilityExpr()
282 bool negative() const { return Negated; } in negative()
285 return CapabilityExpr(CapExpr, !Negated);
289 return (Negated == other.Negated) && sx::equals(CapExpr, other.CapExpr); in equals()
293 return (Negated == other.Negated) && sx::matches(CapExpr, other.CapExpr); in matches()
301 return (Negated == other.Negated) && in partiallyMatches()
306 if (Negated || CapExpr == nullptr) in valueDecl()
316 if (Negated) in toString()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DTrustNonnullChecker.cpp215 bool Negated) const { in addImplication()
220 Negated ? InputState->get<NonNullImplicationMap>(Antecedent) in addImplication()
228 if ((Negated && InputState->isNonNull(AntecedentV).isConstrainedTrue()) in addImplication()
229 || (!Negated && InputState->isNull(AntecedentV).isConstrainedTrue())) { in addImplication()
231 State = InputState->assume(ConsequentS.castAs<DefinedSVal>(), Negated); in addImplication()
236 if (Negated) { in addImplication()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DARMTargetParser.cpp461 bool Negated = stripNegationPrefix(ArchExt); in getArchExtFeature() local
464 return StringRef(Negated ? AE.NegFeature : AE.Feature); in getArchExtFeature()
505 const bool Negated = stripNegationPrefix(ArchExt); in appendArchExtFeatures() local
512 if (Negated) { in appendArchExtFeatures()
527 if (Negated) { in appendArchExtFeatures()
532 } else if (Negated) { in appendArchExtFeatures()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineNegator.cpp478 Value *Negated = negate(Root, /*Depth=*/0); in run() local
479 if (!Negated) { in run()
486 return std::make_pair(ArrayRef<Instruction *>(NewInstructions), Negated); in run()
/netbsd-src/external/bsd/openldap/dist/libraries/liblunicode/ure/
H A DREADME72 [^...] - Negated character class.
74 \PN1,N2,...,Nn - Negated character properties class.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonBitTracker.cpp988 bool Negated = false; in evaluate() local
994 Negated = true; in evaluate()
1027 if (!Test.is(!Negated)) { in evaluate()
H A DHexagonConstPropagation.cpp2272 bool Negated = false; in evaluate() local
2277 Negated = true; in evaluate()
2323 if ((!Negated && CTrue) || (Negated && CFalse)) in evaluate()
2325 else if ((!Negated && CFalse) || (Negated && CTrue)) in evaluate()
H A DHexagonHardwareLoops.cpp647 bool Negated = TII->predOpcodeHasNot(Cond) ^ (TB != Header); in getLoopTripCount() local
692 if (Negated) in getLoopTripCount()
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-strip.rst118 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
H A Dllvm-objcopy.rst238 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZOperands.td212 // Negated variants.
465 // Negated immediates that fit LF32 or LH16.
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPULegalizerInfo.cpp2680 MachineBasicBlock *&UncondBrTarget, bool &Negated) { in verifyCFIntrinsic() argument
2697 Negated = true; in verifyCFIntrinsic()
4692 bool Negated = false; in legalizeIntrinsic() local
4694 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic()
4703 if (Negated) in legalizeIntrinsic()
4740 bool Negated = false; in legalizeIntrinsic() local
4742 verifyCFIntrinsic(MI, MRI, Br, UncondBrTarget, Negated)) { in legalizeIntrinsic()
4749 if (Negated) in legalizeIntrinsic()
H A DAMDGPUISelDAGToDAG.cpp142 bool isInlineImmediate(const SDNode *N, bool Negated = false) const;
525 bool Negated) const { in isInlineImmediate()
530 if (Negated) { in isInlineImmediate()
/netbsd-src/external/gpl3/autoconf/dist/tests/
H A Dm4sh.at764 ## Negated classes in globbing. ##
770 AT_SETUP([Negated classes in globbing])
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExprConstant.cpp13371 APFixedPoint Negated = Result.getFixedPoint().negate(&Overflowed); in VisitUnaryOperator() local
13372 if (Overflowed && !HandleOverflow(Info, E, Negated, E->getType())) in VisitUnaryOperator()
13374 return Success(Negated, E); in VisitUnaryOperator()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td409 bit Negated = negated;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dcommon.opt2615 Treat signed overflow as undefined. Negated as -fwrapv -fwrapv-pointer.
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dcommon.opt2756 Treat signed overflow as undefined. Negated as -fwrapv -fwrapv-pointer.
H A DChangeLog-200819727 * gcse.c (store_killed_in_insn): Negated call to RTL_CONST_CALL_P.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/s390/
H A Ds390.md8937 ;;- Negated absolute value instructions
9368 ;;- Negated conditional jump instructions.
/netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/
H A Ds390.md9044 ;;- Negated absolute value instructions
9469 ;;- Negated conditional jump instructions.
/netbsd-src/external/gpl3/autoconf/dist/
H A DChangeLog.31265 (Negated classes in globbing): Update comments.
3574 (AS@&t@_VERSION_COMPARE, as_me, Negated classes in globbing)
H A DChangeLog.22465 * tests/m4sh.at (Negated classes in globbing): New test.