Lines Matching defs:vmode
523 ptrdiff_t stride, int hmode, int vmode,
536 int shift = (shift_value[hmode] + shift_value[vmode]) >> 1;
538 const uint8_t *para_v = para_value[vmode - 1];
670 #define PUT_VC1_MSPEL_MC_LASX(hmode, vmode) \
671 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _lasx(uint8_t *dst, \
675 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \
677 void ff_put_vc1_mspel_mc ## hmode ## vmode ## _16_lasx(uint8_t *dst, \
681 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \
682 put_vc1_mspel_mc_h_v_lasx(dst + 8, src + 8, stride, hmode, vmode, rnd); \
684 put_vc1_mspel_mc_h_v_lasx(dst, src, stride, hmode, vmode, rnd); \
685 put_vc1_mspel_mc_h_v_lasx(dst + 8, src + 8, stride, hmode, vmode, rnd); \
739 ptrdiff_t stride, int vmode, int rnd)
746 const uint16_t *para_v = para_value[vmode - 1];
753 const_r = __lasx_xvreplgr2vr_h(add_value[vmode - 1]);
754 const_sh = __lasx_xvreplgr2vr_h(shift_value[vmode]);
783 #define PUT_VC1_MSPEL_MC_V_LASX(vmode) \
784 void ff_put_vc1_mspel_mc0 ## vmode ## _16_lasx(uint8_t *dst, \
788 put_vc1_mspel_mc_v_lasx(dst, src, stride, vmode, rnd); \