HomeSort by relevance Sort by last modified time
    Searched defs:Cond (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 12 struct rc_instruction * Cond;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_loops.h 12 struct rc_instruction * Cond;
  /external/llvm/lib/Target/MSP430/
MSP430BranchSelector.cpp 151 SmallVector<MachineOperand, 1> Cond;
152 Cond.push_back(I->getOperand(1));
155 TII->ReverseBranchCondition(Cond);
157 .addImm(4).addOperand(Cond[0]);
  /external/llvm/lib/Target/AArch64/
AArch64A53Fix835769.cpp 136 SmallVector<MachineOperand, 2> Cond;
140 if (S == PrevBB && !TII->AnalyzeBranch(*PrevBB, TBB, FBB, Cond) &&
AArch64BranchRelaxation.cpp 407 SmallVector<MachineOperand, 2> Cond;
408 TII->AnalyzeBranch(*MBB, TBB, FBB, Cond, false);
  /external/llvm/lib/Transforms/Scalar/
CorrelatedValuePropagation.cpp 207 Value *Cond = SI->getCondition();
212 if (isa<Instruction>(Cond) && cast<Instruction>(Cond)->getParent() == BB)
232 Cond, Case, *PI, BB);
261 Cond = SI->getCondition();
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600ISelLowering.cpp 445 SDValue Cond = (isZero(LHS) ? RHS : LHS);
463 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
488 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, HWTrue, HWFalse, CC);
492 Cond = DAG.getNode(ISD::FP_TO_SINT, DL, MVT::i32,
493 DAG.getNode(ISD::FNEG, DL, VT, Cond));
496 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
501 SDValue Cond;
507 Cond = DAG.getNode(
515 Cond = DAG.getNode(
520 Cond);
    [all...]
SIISelLowering.cpp 384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
AMDILISelLowering.cpp 477 SDValue Cond = Op.getOperand(1);
484 Chain, Jump, Cond);
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 77 struct Cond {
81 enum { resultT = Cond<true>::is,
82 resultF = Cond<false>::is };
92 struct Cond {
97 typedef Cond<true, int, char>::True True;
98 typedef Cond<true, int, char>::False False;
112 struct Cond {
117 //Cond<true, int*, double> C; // Errors
119 //typedef Cond<true, int*, double>::Type Type; // Errors
120 typedef Cond<true, int, double>::Type Type
    [all...]
  /external/deqp/modules/glshared/
glsAttributeLocationTests.hpp 60 class Cond
69 Cond (ConstCond cond);
70 explicit Cond (const std::string& name, bool negate = true);
71 bool operator== (const Cond& other) const { return m_negate == other.m_negate && m_name == other.m_name; }
72 bool operator!= (const Cond& other) const { return !(*this == other); }
99 const Cond& cond = Cond::COND_ALWAYS,
105 const Cond& getCondition (void) const { return m_cond;
    [all...]
glsAttributeLocationTests.cpp 136 if (iter->getCondition() != Cond::COND_NEVER && iter->getCondition() != Cond::COND_ALWAYS)
179 if (iter->getCondition() == Cond::COND_NEVER)
195 else if (iter->getCondition() == Cond::COND_ALWAYS)
582 const bool isActive = attrib.getCondition() != Cond::COND_NEVER;
616 << (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF ? ", expected " + de::toString(expectedLocation) : "")
619 if (attrib.getCondition() == Cond::COND_NEVER && location != -1)
622 if (attrib.getCondition() != Cond::COND_NEVER && expectedLocation != Attribute::LOC_UNDEF && expectedLocation != location)
625 isOk &= (attrib.getCondition() == Cond::COND_NEVER || expectedLocation == Attribute::LOC_UNDEF || expectedLocation == location);
658 Cond::Cond (const string& name, bool negate
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 83 Value *handleLoopCondition(Value *Cond, PHINode *Broken);
206 Value *SIAnnotateControlFlow::handleLoopCondition(Value *Cond, PHINode *Broken) {
207 if (PHINode *Phi = dyn_cast<PHINode>(Cond)) {
250 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
253 Value *Args[] = { Cond, Broken };
267 Value *Cond = Term->getCondition();
269 Value *Arg = handleLoopCondition(Cond, Broken);
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 360 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
362 if (!Cond) {
364 Cond = dyn_cast_or_null<ConstantInt>(V);
368 if (Cond) {
369 BasicBlock *Dest = BI->getSuccessor(!Cond->getZExtValue());
377 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
378 if (!Cond) { // Or known constant after constant prop in the callee...
380 Cond = dyn_cast_or_null<ConstantInt>(V);
382 if (Cond) { // Constant fold to uncond branch!
383 SwitchInst::ConstCaseIt Case = SI->findCaseValue(Cond);
    [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
R600ISelLowering.cpp 445 SDValue Cond = (isZero(LHS) ? RHS : LHS);
463 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
488 SDValue Cond = DAG.getNode(ISD::SELECT_CC, DL, VT, LHS, RHS, HWTrue, HWFalse, CC);
492 Cond = DAG.getNode(ISD::FP_TO_SINT, DL, MVT::i32,
493 DAG.getNode(ISD::FNEG, DL, VT, Cond));
496 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
501 SDValue Cond;
507 Cond = DAG.getNode(
515 Cond = DAG.getNode(
520 Cond);
    [all...]
SIISelLowering.cpp 384 SDValue Cond = DAG.getNode(ISD::SETCC, DL, MVT::i1, LHS, RHS, CC);
385 return DAG.getNode(ISD::SELECT, DL, VT, Cond, True, False);
AMDILISelLowering.cpp 477 SDValue Cond = Op.getOperand(1);
484 Chain, Jump, Cond);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbtables.py 68 class Cond:
73 class ExactCond(Cond):
80 class PrefixCond(Cond):
87 class PostfixCond(Cond):
94 class LikeCond(Cond):
  /external/clang/lib/Analysis/
ReachableCode.cpp 54 const Expr *Cond = DS->getCond()->IgnoreParenCasts();
55 return Cond == S && isTrivialExpression(Cond);
263 const Stmt *Cond = B->getTerminatorCondition(/* stripParens */ false);
264 return isConfigurationValue(Cond, PP);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 520 SDValue Cond = N->getOperand(0);
521 CL = CH = Cond;
522 if (Cond.getValueType().isVector()) {
525 if (getTypeAction(Cond.getValueType()) == TargetLowering::TypeSplitVector)
526 GetSplitVector(Cond, CL, CH);
528 std::tie(CL, CH) = DAG.SplitVector(Cond, dl);
  /external/llvm/lib/Target/Mips/
MipsDelaySlotFiller.cpp 673 SmallVector<MachineOperand, 2> Cond;
676 TII->AnalyzeBranch(MBB, TrueBB, FalseBB, Cond, false, BranchInstrs);
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf.cc     [all...]
  /external/chromium_org/v8/src/arm64/
assembler-arm64-inl.h 1003 Instr Assembler::Cond(Condition cond) {
1004 return cond << Condition_offset;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 145 ExprAST *Cond, *Then, *Else;
147 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
148 : Cond(cond), Then(then), Else(_else) {}
280 ExprAST *Cond = ParseExpression();
281 if (!Cond) return 0;
298 return new IfExprAST(Cond, Then, Else);
513 Value *CondV = Cond->Codegen();

Completed in 668 milliseconds

1 2 3 4 5