Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_emitaluinstruction.cpp75 case nir_op_b32all_fequal3: return emit_any_all_fcomp(instr, op2_sete, 3, true); in do_emit()
76 case nir_op_b32all_fequal4: return emit_any_all_fcomp(instr, op2_sete, 4, true); in do_emit()
81 case nir_op_b32any_fnequal3: return emit_any_all_fcomp(instr, op2_setne, 3, false); in do_emit()
82 case nir_op_b32any_fnequal4: return emit_any_all_fcomp(instr, op2_setne, 4, false); in do_emit()
88 case nir_op_ball_fequal3: return emit_any_all_fcomp(instr, op2_sete, 3, true); in do_emit()
89 case nir_op_ball_fequal4: return emit_any_all_fcomp(instr, op2_sete, 4, true); in do_emit()
94 case nir_op_bany_fnequal3: return emit_any_all_fcomp(instr, op2_setne, 3, false); in do_emit()
95 case nir_op_bany_fnequal4: return emit_any_all_fcomp(instr, op2_setne, 4, false); in do_emit()
727 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
Dsfn_emitaluinstruction.h77 bool emit_any_all_fcomp(const nir_alu_instr& instr, EAluOp op, unsigned nc, bool all);