Searched refs:InlineConstValue (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_value.cpp | 186 PValue Value::zero(new InlineConstValue(ALU_SRC_0, 0)); 187 PValue Value::one_f(new InlineConstValue(ALU_SRC_1, 0)); 188 PValue Value::one_i(new InlineConstValue(ALU_SRC_1_INT, 0)); 189 PValue Value::zero_dot_5(new InlineConstValue(ALU_SRC_0_5, 0)); 191 InlineConstValue::InlineConstValue(int value, int chan): in InlineConstValue() function in r600::InlineConstValue 196 bool InlineConstValue::is_equal_to(const Value& other) const in is_equal_to() 199 const auto& rhs = static_cast<const InlineConstValue&>(other); in is_equal_to()
|
D | sfn_value.h | 174 class InlineConstValue: public SpecialValue { 176 InlineConstValue(int value, int chan);
|
D | sfn_shader_fragment.cpp | 697 PValue(new InlineConstValue(ALU_SRC_PARAM_BASE + io.lds_pos(), i)), in load_interpolated() 716 … PValue(new InlineConstValue(ALU_SRC_PARAM_BASE + io.lds_pos(), i)), in load_interpolated_one_comp() 731 …ir = new AluInstruction(op, dest[i], i & 1 ? ip.j : ip.i, PValue(new InlineConstValue(ALU_SRC_PARA… in load_interpolated_two_comp() 748 … PValue(new InlineConstValue(ALU_SRC_PARAM_BASE + io.lds_pos(), i)), in load_interpolated_two_comp_for_one()
|
D | sfn_emitssboinstruction.cpp | 39 …uction(op3_muladd_uint24, m_rat_return_address.reg_i(2), PValue(new InlineConstValue(ALU_SRC_SE_ID… in load_rat_return_address() 40 … literal(256), PValue(new InlineConstValue(ALU_SRC_HW_WAVE_ID, 0)), {alu_write, alu_last_instr})); in load_rat_return_address()
|