Lines Matching refs:src1
299 const src_reg &src1) const
307 fix_math_operand(src1)));
311 src0, src1));
321 const src_reg &src1, const src_reg &src2) const
330 fix_3src_operand(src1),
335 src0, src1, src2));
384 * conditional mod evaluates to true, otherwise select \p src1.
390 const src_reg &src1, brw_conditional_mod mod) const
394 /* In some cases we can't have bytes as operand for src1, so use the
398 fix_unsigned_negate(src1)));
581 op(const dst_reg &dst, const src_reg &src0, const src_reg &src1) const \
583 return emit(BRW_OPCODE_##op, dst, src0, src1); \
588 op(const dst_reg &dst, const src_reg &src0, const src_reg &src1) const \
590 instruction *inst = emit(BRW_OPCODE_##op, dst, src0, src1); \
597 op(const dst_reg &dst, const src_reg &src0, const src_reg &src1, \
600 return emit(BRW_OPCODE_##op, dst, src0, src1, src2); \
661 CMP(const dst_reg &dst, const src_reg &src0, const src_reg &src1,
666 * CMP null<d> src0<f> src1<f>
679 fix_unsigned_negate(src1)));
683 * CMPN: Behaves like CMP, but produces true if src1 is NaN.
686 CMPN(const dst_reg &dst, const src_reg &src0, const src_reg &src1,
691 * CMP null<d> src0<f> src1<f>
704 fix_unsigned_negate(src1)));
717 * CSEL: dst = src2 <op> 0.0f ? src0 : src1
720 CSEL(const dst_reg &dst, const src_reg &src0, const src_reg &src1,
733 retype(src1, BRW_REGISTER_TYPE_F),