Lines Matching defs:src
184 /* Emits an ADD from src[0] to src[1], where src[0] must be a
185 * QOP_LOAD_IMM result and src[1] is a QUNIFORM_UNIFORMS_ADDRESS,
201 struct qreg src[3];
583 void qir_SF(struct vc4_compile *c, struct qreg src);
724 qir_UNPACK_8_F(struct vc4_compile *c, struct qreg src, int i)
726 struct qreg t = qir_FMOV(c, src);
727 c->defs[t.index]->src[0].pack = QPU_UNPACK_8A + i;
732 qir_UNPACK_8_I(struct vc4_compile *c, struct qreg src, int i)
734 struct qreg t = qir_MOV(c, src);
735 c->defs[t.index]->src[0].pack = QPU_UNPACK_8A + i;
740 qir_UNPACK_16_F(struct vc4_compile *c, struct qreg src, int i)
742 struct qreg t = qir_FMOV(c, src);
743 c->defs[t.index]->src[0].pack = QPU_UNPACK_16A + i;
748 qir_UNPACK_16_I(struct vc4_compile *c, struct qreg src, int i)
750 struct qreg t = qir_MOV(c, src);
751 c->defs[t.index]->src[0].pack = QPU_UNPACK_16A + i;
820 struct qreg dest, struct qreg src)
822 struct qinst *mov = qir_MOV_dest(c, dest, src);