Home
last modified time | relevance | path

Searched defs:ifTrue (Results 1 – 11 of 11) sorted by relevance

/external/skia/src/sksl/
DSkSLJIT.cpp320 TernaryLValue(JIT* jit, LLVMValueRef test, std::unique_ptr<LValue> ifTrue, in getLValue()
341 LLVMValueRef ifTrue = fIfTrue->load(builder); in getLValue() local
695 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local
712 LLVMBasicBlockRef ifTrue = fCurrentBlock; in compileBinary() local
1008 LLVMValueRef ifTrue = this->compileExpression(builder, *t.fIfTrue); in compileTernary() local
1088 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, "if true"); in compileIf() local
DSkSLIRGenerator.cpp376 std::unique_ptr<Statement> ifTrue = this->convertStatement(*s.fIfTrue); in convertIf() local
1566 std::unique_ptr<Expression> ifTrue = this->convertExpression(*expression.fIfTrue); in convertTernaryExpression() local
DSkSLParser.cpp1155 std::unique_ptr<ASTStatement> ifTrue(this->statement()); in ifStatement() local
DSkSLSPIRVCodeGenerator.cpp1739 SpvId ifTrue = this->getLValue(*t.fIfTrue, out)->getPointer(); in getLValue() local
2827 SpvId ifTrue = this->nextId(); in writeIfStatement() local
/external/skqp/src/sksl/
DSkSLJIT.cpp320 TernaryLValue(JIT* jit, LLVMValueRef test, std::unique_ptr<LValue> ifTrue, in getLValue()
341 LLVMValueRef ifTrue = fIfTrue->load(builder); in getLValue() local
695 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local
712 LLVMBasicBlockRef ifTrue = fCurrentBlock; in compileBinary() local
1008 LLVMValueRef ifTrue = this->compileExpression(builder, *t.fIfTrue); in compileTernary() local
1088 LLVMBasicBlockRef ifTrue = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, "if true"); in compileIf() local
DSkSLIRGenerator.cpp370 std::unique_ptr<Statement> ifTrue = this->convertStatement(*s.fIfTrue); in convertIf() local
1517 std::unique_ptr<Expression> ifTrue = this->convertExpression(*expression.fIfTrue); in convertTernaryExpression() local
DSkSLParser.cpp1168 std::unique_ptr<ASTStatement> ifTrue(this->statement()); in ifStatement() local
DSkSLSPIRVCodeGenerator.cpp1683 SpvId ifTrue = this->getLValue(*t.fIfTrue, out)->getPointer(); in getLValue() local
2836 SpvId ifTrue = this->nextId(); in writeIfStatement() local
/external/swiftshader/src/Reactor/
DReactor.hpp2692 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, RValue<T> ifFalse) in IfThenElse()
2698 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, RValue<T> ifFalse) in IfThenElse()
2706 RValue<T> IfThenElse(RValue<Bool> condition, RValue<T> ifTrue, const T &ifFalse) in IfThenElse()
2714 RValue<T> IfThenElse(RValue<Bool> condition, const T &ifTrue, const T &ifFalse) in IfThenElse()
DSubzeroReactor.cpp695 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr()
1265 Value *Nucleus::createSelect(Value *C, Value *ifTrue, Value *ifFalse) in createSelect()
DLLVMReactor.cpp1041 void Nucleus::createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse) in createCondBr()
1463 Value *Nucleus::createSelect(Value *c, Value *ifTrue, Value *ifFalse) in createSelect()