Home
last modified time | relevance | path

Searched refs:BRW_CONDITIONAL_LE (Results 1 – 13 of 13) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dbrw_eu.cpp53 return BRW_CONDITIONAL_LE; in brw_negate_cmod()
58 case BRW_CONDITIONAL_LE: in brw_negate_cmod()
78 return BRW_CONDITIONAL_LE; in brw_swap_cmod()
81 case BRW_CONDITIONAL_LE: in brw_swap_cmod()
Dtest_fs_cmod_propagation.cpp555 EXPECT_EQ(BRW_CONDITIONAL_LE, instruction(block0, 0)->conditional_mod); in TEST_F()
1516 brw_imm_ud(0u), BRW_CONDITIONAL_LE); in TEST_F()
1536 EXPECT_EQ(BRW_CONDITIONAL_LE, instruction(block0, 1)->conditional_mod); in TEST_F()
1695 test_mov_prop(BRW_CONDITIONAL_LE, in TEST_F()
1785 test_mov_prop(BRW_CONDITIONAL_LE, in TEST_F()
1889 test_mov_prop(BRW_CONDITIONAL_LE, in TEST_F()
2015 test_mov_prop(BRW_CONDITIONAL_LE, in TEST_F()
2133 test_mov_prop(BRW_CONDITIONAL_LE, in TEST_F()
2339 test_saturate_prop(BRW_CONDITIONAL_LE, BRW_OPCODE_CMP, in TEST_F()
2357 test_saturate_prop(BRW_CONDITIONAL_LE, BRW_OPCODE_MOV, in TEST_F()
[all …]
Dgfx6_gs_visitor.cpp570 emit(CMP(dst_null_d(), sol_temp, this->max_svbi, BRW_CONDITIONAL_LE)); in xfb_write()
612 emit(CMP(dst_null_d(), sol_temp, this->max_svbi, BRW_CONDITIONAL_LE)); in xfb_program()
Dtest_fs_copy_propagation.cpp182 { BRW_CONDITIONAL_LE , 0.5f, false }, in TEST_F()
Dbrw_fs_cmod_propagation.cpp130 cond != BRW_CONDITIONAL_LE)) in cmod_propagate_cmp_to_add()
Dbrw_clip_line.c208 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_LE, c->reg.dp0, brw_imm_f(0.0)); in clip_and_emit_line()
Dbrw_compile_ff_gs.c391 brw_CMP(p, vec1(brw_null_reg()), BRW_CONDITIONAL_LE, in gfx6_sol_program()
Dbrw_eu_defines.h131 BRW_CONDITIONAL_LE = 6, enumerator
Dbrw_fs_visitor.cpp568 return BRW_CONDITIONAL_LE; in cond_for_alpha_func()
Dtest_vec4_cmod_propagation.cpp492 EXPECT_EQ(BRW_CONDITIONAL_LE, instruction(block0, 0)->conditional_mod); in TEST_F()
Dbrw_disasm.c109 [BRW_CONDITIONAL_LE] = ".le",
Dbrw_fs.cpp2942 case BRW_CONDITIONAL_LE: in opt_algebraic()
/third_party/mesa3d/src/intel/tools/
Di965_lex.l361 ".le" { yylval.integer = BRW_CONDITIONAL_LE; return LESS_EQUAL; }