| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | MergeFunctions.cpp | 349 int Res1 = FunctionComparator(F1, F2, &GlobalNumbers).compare(); in doSanityCheck() local 353 if (Res1 != -Res2) { in doSanityCheck() 360 if (Res1 == 0) in doSanityCheck() 375 if (Res1 != 0 && Res1 == Res4) { in doSanityCheck() 377 Transitive = Res3 == Res1; in doSanityCheck() 380 Transitive = Res3 == Res1; in doSanityCheck() 383 Transitive = Res4 == -Res1; in doSanityCheck() 389 dbgs() << "Res1, Res3, Res4: " << Res1 << ", " << Res3 << ", " in doSanityCheck()
|
| /netbsd-src/sys/arch/ibmnws/include/ |
| H A D | pnp.h | 471 Res1 = 10, enumerator
|
| /netbsd-src/sys/arch/prep/include/ |
| H A D | pnp.h | 471 Res1 = 10, enumerator
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/ |
| H A D | CFG.cpp | 1111 TryResult Res1, Res2; in checkIncorrectLogicOperator() local 1112 Res1 = analyzeLogicOperatorCondition(BO1, Value, L1); in checkIncorrectLogicOperator() 1115 if (!Res1.isKnown() || !Res2.isKnown()) in checkIncorrectLogicOperator() 1119 AlwaysTrue &= (Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1120 AlwaysFalse &= !(Res1.isTrue() && Res2.isTrue()); in checkIncorrectLogicOperator() 1122 AlwaysTrue &= (Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1123 AlwaysFalse &= !(Res1.isTrue() || Res2.isTrue()); in checkIncorrectLogicOperator() 1126 LHSAlwaysTrue &= Res1.isTrue(); in checkIncorrectLogicOperator() 1127 LHSAlwaysFalse &= Res1.isFalse(); in checkIncorrectLogicOperator()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibCalls.cpp | 90 double& Res1, Constant *copr0, Constant *copr1, Constant *copr2); 1413 double& Res0, double& Res1, in evaluateScalarMathFunc() argument 1594 Res1 = cos(opr0); in evaluateScalarMathFunc()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 143 const MCExpr *Res1 = MCBinaryExpr::create(MCBinaryExpr::Sub, Res, RHS, Ctx); in makeEndMinusStartExpr() local 145 const MCExpr *Res3 = MCBinaryExpr::create(MCBinaryExpr::Sub, Res1, Res2, Ctx); in makeEndMinusStartExpr()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCompares.cpp | 4468 Constant *Res1 = ConstantExpr::getTrunc(C, SrcTy); in foldICmpWithZextOrSext() local 4469 Constant *Res2 = ConstantExpr::getCast(CastOp0->getOpcode(), Res1, DestTy); in foldICmpWithZextOrSext() 4474 return new ICmpInst(ICmp.getPredicate(), X, Res1); in foldICmpWithZextOrSext() 4479 return new ICmpInst(ICmp.getPredicate(), X, Res1); in foldICmpWithZextOrSext() 4482 return new ICmpInst(ICmp.getUnsignedPredicate(), X, Res1); in foldICmpWithZextOrSext()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 5305 ExprResult Res1 = CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, in ActOnOMPIteratorExpr() local 5307 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 5312 Res1 = in ActOnOMPIteratorExpr() 5313 CreateBuiltinBinOp(D.AssignmentLoc, BO_Add, Res1.get(), St1.get()); in ActOnOMPIteratorExpr() 5314 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 5319 Res1 = in ActOnOMPIteratorExpr() 5320 CreateBuiltinBinOp(D.AssignmentLoc, BO_Sub, Res1.get(), in ActOnOMPIteratorExpr() 5322 if (!Res1.isUsable()) { in ActOnOMPIteratorExpr() 5327 Res1 = in ActOnOMPIteratorExpr() 5328 CreateBuiltinBinOp(D.AssignmentLoc, BO_Div, Res1.get(), St1.get()); in ActOnOMPIteratorExpr() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | TargetLowering.h | 3518 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo = true);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | DAGCombiner.cpp | 306 SDValue CombineTo(SDNode *N, SDValue Res0, SDValue Res1, in CombineTo() argument 308 SDValue To[] = { Res0, Res1 }; in CombineTo() 845 CombineTo(SDNode *N, SDValue Res0, SDValue Res1, bool AddTo) { in CombineTo() argument 846 return ((DAGCombiner*)DC)->CombineTo(N, Res0, Res1, AddTo); in CombineTo()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/ |
| H A D | ARMISelLowering.cpp | 9696 SDValue Res1 = DAG.getNode(BaseOpcode, dl, EltVT, Ext2, Ext3, Op->getFlags()); in LowerVecReduce() local 9697 Res = DAG.getNode(BaseOpcode, dl, EltVT, Res0, Res1, Op->getFlags()); in LowerVecReduce()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/ |
| H A D | X86ISelLowering.cpp | 49162 SDValue Res1 = in combineADC() local 49168 return DCI.CombineTo(N, Res1, CarryOut); in combineADC()
|