Home
last modified time | relevance | path

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

/external/skia/src/sksl/
DSkSLJIT.cpp321 std::unique_ptr<LValue> ifFalse) in getLValue()
344 LLVMValueRef ifFalse = fIfTrue->load(builder); in getLValue() local
694 LLVMBasicBlockRef ifFalse = fCurrentBlock; in compileBinary() local
713 LLVMBasicBlockRef ifFalse = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local
1012 LLVMValueRef ifFalse = this->compileExpression(builder, *t.fIfFalse); in compileTernary() local
1091 LLVMBasicBlockRef ifFalse; in compileIf() local
DSkSLIRGenerator.cpp380 std::unique_ptr<Statement> ifFalse; in convertIf() local
1570 std::unique_ptr<Expression> ifFalse = this->convertExpression(*expression.fIfFalse); in convertTernaryExpression() local
DSkSLParser.cpp1159 std::unique_ptr<ASTStatement> ifFalse; in ifStatement() local
DSkSLSPIRVCodeGenerator.cpp1743 SpvId ifFalse = this->getLValue(*t.fIfFalse, out)->getPointer(); in getLValue() local
2828 SpvId ifFalse = this->nextId(); in writeIfStatement() local
/external/skqp/src/sksl/
DSkSLJIT.cpp321 std::unique_ptr<LValue> ifFalse) in getLValue()
344 LLVMValueRef ifFalse = fIfTrue->load(builder); in getLValue() local
694 LLVMBasicBlockRef ifFalse = fCurrentBlock; in compileBinary() local
713 LLVMBasicBlockRef ifFalse = LLVMAppendBasicBlockInContext(fContext, fCurrentFunction, in compileBinary() local
1012 LLVMValueRef ifFalse = this->compileExpression(builder, *t.fIfFalse); in compileTernary() local
1091 LLVMBasicBlockRef ifFalse; in compileIf() local
DSkSLIRGenerator.cpp374 std::unique_ptr<Statement> ifFalse; in convertIf() local
1521 std::unique_ptr<Expression> ifFalse = this->convertExpression(*expression.fIfFalse); in convertTernaryExpression() local
DSkSLParser.cpp1172 std::unique_ptr<ASTStatement> ifFalse; in ifStatement() local
DSkSLSPIRVCodeGenerator.cpp1687 SpvId ifFalse = this->getLValue(*t.fIfFalse, out)->getPointer(); in getLValue() local
2837 SpvId ifFalse = 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()