Home
last modified time | relevance | path

Searched refs:emit_any_all_fcomp (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emitaluinstruction.h82 bool emit_any_all_fcomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, bool all);
Dsfn_emitaluinstruction.cpp161 case nir_op_bany_fnequal3: return emit_any_all_fcomp(instr, op2_setne, 3, false); in do_emit()
162 case nir_op_bany_fnequal4: return emit_any_all_fcomp(instr, op2_setne, 4, false); in do_emit()
165 case nir_op_ball_fequal3: return emit_any_all_fcomp(instr, op2_sete, 3, true); in do_emit()
166 case nir_op_ball_fequal4: return emit_any_all_fcomp(instr, op2_sete, 4, true); in do_emit()
740 bool EmitAluInstruction::emit_any_all_fcomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, boo… in emit_any_all_fcomp() function in r600::EmitAluInstruction