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

/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp2800 Value *TrueVal, *FalseVal, *Cond; local
2803 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
2806 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2815 Value *TrueVal, *FalseVal, *Cond; local
2818 getValueTypePair(Record, OpNum, NextValueNo, Cond))
2823 dyn_cast<VectorType>(Cond->getType())) {
2829 if (Cond->getType() != Type::getInt1Ty(Context))
2833 I = SelectInst::Create(Cond, TrueVal, FalseVal);
2944 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
2945 if (!FalseDest || !Cond)
2956 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]
/frameworks/compile/libbcc/lib/
H A DRSKernelExpand.cpp432 llvm::Value *Cond, *IVNext, *IV, *IVVar; local
450 Cond = Builder.CreateICmpULT(LowerBound, UpperBound);
451 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
467 Cond = Builder.CreateICmpULT(IVNext, UpperBound);
468 Builder.CreateCondBr(Cond, HeaderBB, AfterBB);
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp404 // for (Init; Cond; Inc)
416 // Cond -> "rsIntIter < NumArrayElements"
439 clang::BinaryOperator *Cond = local
493 Cond,
775 // for (Init; Cond; Inc)
800 // Cond -> "rsIntIter < NumArrayElements"
804 clang::BinaryOperator *Cond =
877 Cond,
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp3061 Value *TrueVal, *FalseVal, *Cond; local
3064 getValue(Record, OpNum, Type::getInt1Ty(Context), Cond))
3067 I = SelectInst::Create(Cond, TrueVal, FalseVal);
3076 Value *TrueVal, *FalseVal, *Cond; local
3079 getValueTypePair(Record, OpNum, NextValueNo, Cond))
3084 dyn_cast<VectorType>(Cond->getType())) {
3090 if (Cond->getType() != Type::getInt1Ty(Context))
3094 I = SelectInst::Create(Cond, TrueVal, FalseVal);
3192 Value *Cond = getFnValueByID(Record[2], Type::getInt1Ty(Context)); local
3193 if (!FalseDest || !Cond)
3204 Value *Cond = getFnValueByID(Record[1], OpTy); local
[all...]

Completed in 3487 milliseconds