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

/frameworks/compile/libbcc/lib/Renderscript/
H A DRSForEachExpand.cpp246 llvm::Value *Cond, *IVNext; local
259 Cond = Builder.CreateICmpULT(LowerBound, UpperBound);
260 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
273 Cond = Builder.CreateICmpULT(IVNext, UpperBound);
274 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp509 // for (Init; Cond; Inc)
537 // Cond -> "rsIntIter < NumArrayElements"
541 clang::BinaryOperator *Cond = local
596 Cond,
880 // for (Init; Cond; Inc)
905 // Cond -> "rsIntIter < NumArrayElements"
909 clang::BinaryOperator *Cond =
983 Cond,
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2344 Value *TrueVal, *FalseVal, *Cond; local
2347 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
2350 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2359 Value *TrueVal, *FalseVal, *Cond; local
2362 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2367 dyn_cast<VectorType>(Cond->getType())) {
2373 if (Cond->getType() != Type::getInt1Ty(Context))
2377 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2488 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
2489 if (FalseDest == 0 || Cond
2500 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2604 Value *TrueVal, *FalseVal, *Cond; local
2607 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
2610 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2619 Value *TrueVal, *FalseVal, *Cond; local
2622 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2627 dyn_cast<VectorType>(Cond->getType())) {
2633 if (Cond->getType() != Type::getInt1Ty(Context))
2637 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2735 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
2736 if (FalseDest == 0 || Cond
2747 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]

Completed in 79 milliseconds