Home
last modified time | relevance | path

Searched refs:op3_cnde (Results 1 – 5 of 5) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/r600/sfn/tests/
Dsfn_instr_test.cpp140 AluInstr alu(op3_cnde, in TEST_F()
152 EXPECT_EQ(alu.opcode(), op3_cnde); in TEST_F()
245 AluInstr alu(op3_cnde, R130x, R130y, R131z, R131w, {alu_write, alu_last_instr}); in TEST_F()
249 EXPECT_NE(alu, AluInstr(op3_cnde, R130z, R130y, R131z, R131w, {alu_write, alu_last_instr})); in TEST_F()
250 EXPECT_NE(alu, AluInstr(op3_cnde, R130x, R130z, R131z, R131w, {alu_write, alu_last_instr})); in TEST_F()
251 EXPECT_NE(alu, AluInstr(op3_cnde, R130x, R130y, R130z, R131w, {alu_write, alu_last_instr})); in TEST_F()
252 EXPECT_NE(alu, AluInstr(op3_cnde, R130x, R130y, R131z, R130z, {alu_write, alu_last_instr})); in TEST_F()
253 EXPECT_NE(alu, AluInstr(op3_cnde, R130x, R130y, R131z, R131w, {alu_write})); in TEST_F()
351 EXPECT_THROW(AluInstr(op3_cnde, in TEST_F()
357 EXPECT_THROW(AluInstr(op3_cnde, in TEST_F()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_alu_defines.h234 op3_cnde = 25<< 6, enumerator
Dsfn_alu_defines.cpp229 {op3_cnde ,AluOp(3, 1, AluOp::a, AluOp::a, AluOp::a, "CNDE")},
Dsfn_assembler.cpp1408 {op3_cnde, ALU_OP3_CNDE},
Dsfn_instr_alu.cpp1310 case nir_op_fcsel: return emit_alu_op3(*alu, op3_cnde, shader, {0, 2, 1}); in from_nir()