| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AVR/MCTargetDesc/ |
| H A D | AVRMCExpr.h | 55 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 D | AVRMCExpr.cpp | 40 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 D | ThreadSafetyCommon.h | 276 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 D | TrustNonnullChecker.cpp | 215 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 D | ARMTargetParser.cpp | 461 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 D | InstCombineNegator.cpp | 478 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 D | README | 72 [^...] - Negated character class. 74 \PN1,N2,...,Nn - Negated character properties class.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitTracker.cpp | 988 bool Negated = false; in evaluate() local 994 Negated = true; in evaluate() 1027 if (!Test.is(!Negated)) { in evaluate()
|
| H A D | HexagonConstPropagation.cpp | 2272 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 D | HexagonHardwareLoops.cpp | 647 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 D | llvm-strip.rst | 118 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
|
| H A D | llvm-objcopy.rst | 238 ``[!a-z]``, ``[^a-z]`` Negated character class ``[^a-z]``
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZOperands.td | 212 // Negated variants. 465 // Negated immediates that fit LF32 or LH16.
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULegalizerInfo.cpp | 2680 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 D | AMDGPUISelDAGToDAG.cpp | 142 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 D | m4sh.at | 764 ## Negated classes in globbing. ## 770 AT_SETUP([Negated classes in globbing])
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | ExprConstant.cpp | 13371 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 D | Attr.td | 409 bit Negated = negated;
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/ |
| H A D | common.opt | 2615 Treat signed overflow as undefined. Negated as -fwrapv -fwrapv-pointer.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/ |
| H A D | common.opt | 2756 Treat signed overflow as undefined. Negated as -fwrapv -fwrapv-pointer.
|
| H A D | ChangeLog-2008 | 19727 * 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 D | s390.md | 8937 ;;- Negated absolute value instructions 9368 ;;- Negated conditional jump instructions.
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/s390/ |
| H A D | s390.md | 9044 ;;- Negated absolute value instructions 9469 ;;- Negated conditional jump instructions.
|
| /netbsd-src/external/gpl3/autoconf/dist/ |
| H A D | ChangeLog.3 | 1265 (Negated classes in globbing): Update comments. 3574 (AS@&t@_VERSION_COMPARE, as_me, Negated classes in globbing)
|
| H A D | ChangeLog.2 | 2465 * tests/m4sh.at (Negated classes in globbing): New test.
|