Searched defs:Cond (Results 1 - 4 of 4) sorted by relevance

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp298 llvm::Value *Cond, *IVNext; local
311 Cond = Builder.CreateICmpULT(LowerBound, UpperBound);
312 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
325 Cond = Builder.CreateICmpULT(IVNext, UpperBound);
326 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp495 // for (Init; Cond; Inc)
523 // Cond -> "rsIntIter < NumArrayElements"
527 clang::BinaryOperator *Cond = local
581 Cond,
864 // for (Init; Cond; Inc)
889 // Cond -> "rsIntIter < NumArrayElements"
893 clang::BinaryOperator *Cond =
966 Cond,
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2399 Value *TrueVal, *FalseVal, *Cond; local
2402 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
2405 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2414 Value *TrueVal, *FalseVal, *Cond; local
2417 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2422 dyn_cast<VectorType>(Cond->getType())) {
2428 if (Cond->getType() != Type::getInt1Ty(Context))
2432 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2543 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
2544 if (FalseDest == 0 || Cond
2555 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2657 Value *TrueVal, *FalseVal, *Cond; local
2660 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
2663 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2672 Value *TrueVal, *FalseVal, *Cond; local
2675 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2680 dyn_cast<VectorType>(Cond->getType())) {
2686 if (Cond->getType() != Type::getInt1Ty(Context))
2690 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2788 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
2789 if (FalseDest == 0 || Cond
2800 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]

Completed in 161 milliseconds