Searched refs:getCondition (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUnfoldShortCircuit.cpp126 node->getCondition()->traverse(this);
129 node->getCondition()->traverse(mOutputHLSL);
166 if (node->getCondition())
168 node->getCondition()->traverse(this);
H A DintermOut.cpp373 node->getCondition()->traverse(this);
451 if (node->getCondition())
454 node->getCondition()->traverse(this);
H A DOutputGLSLBase.cpp512 node->getCondition()->traverse(this);
522 node->getCondition()->traverse(this);
818 if (node->getCondition())
819 node->getCondition()->traverse(this);
842 ASSERT(node->getCondition() != NULL);
843 node->getCondition()->traverse(this);
874 ASSERT(node->getCondition() != NULL);
875 node->getCondition()->traverse(this);
H A DLoopInfo.cpp111 TIntermBinary* binOp = node->getCondition()->getAsBinaryNode();
H A DRewriteElseBlocks.cpp107 TIntermTyped *typedCondition = selection->getCondition()->getAsTyped();
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DFence.h37 GLuint getCondition() const { return mCondition; } function in class:gl::FenceNV
59 GLuint getCondition() const { return mCondition; } function in class:gl::FenceSync
/external/llvm/lib/Transforms/Utils/
H A DLowerExpectIntrinsic.cpp62 CallInst *CI = dyn_cast<CallInst>(SI->getCondition());
108 ICmpInst *CmpI = dyn_cast<ICmpInst>(BI->getCondition());
110 CI = dyn_cast<CallInst>(BI->getCondition());
H A DFlattenCFG.cpp167 Value *PC = PBI->getCondition();
243 CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
272 Value *PC = PBI->getCondition();
281 Value *CC = PBI->getCondition();
439 Value *CC = PBI->getCondition();
H A DSimplifyCFG.cpp162 // 3> SI2->getCondition() and Cond have same operands.
163 CmpInst *Ci2 = dyn_cast<CmpInst>(SI2->getCondition());
457 Cond = dyn_cast<Instruction>(SI->getCondition());
460 Cond = dyn_cast<Instruction>(BI->getCondition());
478 CV = SI->getCondition();
480 if (BI->isConditional() && BI->getCondition()->hasOneUse())
481 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
511 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
751 ICmpInst *ICI = cast<ICmpInst>(BI->getCondition());
1110 (Builder.CreateSelect(BI->getCondition(), BB1
[all...]
H A DCloneFunction.cpp360 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition());
363 Value *V = VMap[BI->getCondition()];
377 ConstantInt *Cond = dyn_cast<ConstantInt>(SI->getCondition());
379 Value *V = VMap[SI->getCondition()];
/external/llvm/lib/Analysis/
H A DSparsePropagation.cpp135 BCValue = getOrInitValueState(BI->getCondition());
137 BCValue = getLatticeState(BI->getCondition());
150 Constant *C = LatticeFunc->GetConstant(BCValue, BI->getCondition(), *this);
177 SCValue = getOrInitValueState(SI.getCondition());
179 SCValue = getLatticeState(SI.getCondition());
192 Constant *C = LatticeFunc->GetConstant(SCValue, SI.getCondition(), *this);
H A DBranchProbabilityInfo.cpp280 Value *Cond = BI->getCondition();
370 Value *Cond = BI->getCondition();
444 Value *Cond = BI->getCondition();
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DWaitingThread.java94 public final Condition getCondition() { method in class:WaitingThread
/external/llvm/lib/Transforms/ObjCARC/
H A DProvenanceAnalysis.cpp38 if (A->getCondition() == SB->getCondition())
/external/smack/src/com/kenai/jbosh/
H A DTerminalBindingCondition.java195 String getCondition() { method in class:TerminalBindingCondition
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp31 ICmpInst *ICI = dyn_cast<ICmpInst>(SI->getCondition());
159 Type *CondTy = SI.getCondition()->getType();
168 Value *NewSI = Builder->CreateSelect(SI.getCondition(), TI->getOperand(0),
208 Value *NewSI = Builder->CreateSelect(SI.getCondition(), OtherOpT,
256 Value *NewSel = Builder->CreateSelect(SI.getCondition(), OOp, C);
291 Value *NewSel = Builder->CreateSelect(SI.getCondition(), C, OOp);
401 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
664 const PHINode *CondPHI = cast<PHINode>(SI.getCondition());
742 SI->getCondition(), SI->getFalseValue(), SI->getTrueValue());
755 const ICmpInst *IC = dyn_cast<ICmpInst>(SI.getCondition());
[all...]
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp193 Value *Ret = CallInst::Create(If, Term->getCondition(), "", Term);
267 Value *Cond = Term->getCondition();
311 PHINode *Phi = dyn_cast<PHINode>(Term->getCondition());
/external/chromium_org/third_party/angle/src/compiler/translator/depgraph/
H A DDependencyGraphBuilder.cpp201 if (TIntermNode *intermCondition = intermSelection->getCondition())
224 if (TIntermTyped *intermCondition = intermLoop->getCondition())
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp526 LatticeVal BCValue = getValueState(BI->getCondition());
552 LatticeVal SCValue = getValueState(SI->getCondition());
595 LatticeVal BCValue = getValueState(BI->getCondition());
615 LatticeVal SCValue = getValueState(SI->getCondition());
817 LatticeVal CondValue = getValueState(I.getCondition());
1453 if (!getValueState(BI->getCondition()).isUndefined())
1458 if (isa<UndefValue>(BI->getCondition())) {
1467 markForcedConstant(BI->getCondition(),
1475 if (!getValueState(SI->getCondition()).isUndefined())
1480 if (isa<UndefValue>(SI->getCondition())) {
[all...]
H A DCorrelatedValuePropagation.cpp207 Value *Cond = SI->getCondition();
261 Cond = SI->getCondition();
H A DLoopUnswitch.cpp439 Value *LoopCond = FindLIVLoopCondition(BI->getCondition(),
448 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
483 Value *LoopCond = FindLIVLoopCondition(SI->getCondition(),
567 if (!BI->isConditional() || BI->getCondition() != Cond)
583 if (SI->getCondition() != Cond) return false;
/external/deqp/modules/glshared/
H A DglsAttributeLocationTests.cpp136 if (iter->getCondition() != Cond::COND_NEVER && iter->getCondition() != Cond::COND_ALWAYS)
137 conditions.insert(iter->getCondition().getName());
179 if (iter->getCondition() == Cond::COND_NEVER)
195 else if (iter->getCondition() == Cond::COND_ALWAYS)
208 "\tif (u_" << iter->getCondition().getName() << (iter->getCondition().getNegate() ? " != " : " == ") << "0.0)\n"
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()
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp297 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
309 if (!equivalentAsOperands(LI->getCondition(), RI->getCondition())) {
/external/smack/src/org/jivesoftware/smackx/packet/
H A DAdHocCommandData.java268 public SpecificErrorCondition getCondition() { method in class:AdHocCommandData.SpecificError
/external/smack/src/org/jivesoftware/smack/packet/
H A DXMPPError.java164 public String getCondition() { method in class:XMPPError
431 protected Condition getCondition() { method in class:XMPPError.ErrorSpecification

Completed in 465 milliseconds

12345