Searched defs:Cond (Results 1 - 4 of 4) sorted by relevance
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
H A D | BitcodeReader.cpp | 2800 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 D | RSKernelExpand.cpp | 432 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 D | slang_rs_object_ref_count.cpp | 404 // for (Init; Cond; Inc) 416 // Cond -> "rsIntIter < NumArrayElements" 439 clang::BinaryOperator *Cond = local 493 Cond, 777 // for (Init; Cond; Inc) 802 // Cond -> "rsIntIter < NumArrayElements" 806 clang::BinaryOperator *Cond = 879 Cond,
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
H A D | BitcodeReader.cpp | 3061 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 26 milliseconds