Lines Matching refs:dst
313 static void put_vc1_mspel_mc_h_v_msa(uint8_t *dst, const uint8_t *src,
430 ST_D8(t0, t1, t2, t3, 0, 1, 0, 1, 0, 1, 0, 1, dst, stride);
434 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _msa(uint8_t *dst, \
438 put_vc1_mspel_mc_h_v_msa(dst, src, stride, hmode, vmode, rnd); \
440 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_msa(uint8_t *dst, \
444 put_vc1_mspel_mc_h_v_msa(dst, src, stride, hmode, vmode, rnd); \
445 put_vc1_mspel_mc_h_v_msa(dst + 8, src + 8, stride, hmode, vmode, rnd); \
446 dst += 8 * stride, src += 8 * stride; \
447 put_vc1_mspel_mc_h_v_msa(dst, src, stride, hmode, vmode, rnd); \
448 put_vc1_mspel_mc_h_v_msa(dst + 8, src + 8, stride, hmode, vmode, rnd); \