Lines Matching refs:SIZE
73 #define QPEL_FUNC_DECL(OP, SIZE, PH, PV, OPT) \
74 static void OP ## rv40_qpel ##SIZE ##_mc ##PH ##PV ##OPT(uint8_t *dst, \
80 LOCAL_ALIGNED(16, uint8_t, tmp, [SIZE * (SIZE + 5)]); \
81 uint8_t *tmpptr = tmp + SIZE * 2; \
84 for (i = 0; i < SIZE; i += LOOPSIZE) \
85 ff_put_rv40_qpel_h ##OPT(tmp + i, SIZE, src + i, stride, \
86 SIZE + 5, HCOFF(PH)); \
87 for (i = 0; i < SIZE; i += LOOPSIZE) \
89 SIZE, SIZE, VCOFF(PV)); \
91 for (i = 0; i < SIZE; i += LOOPSIZE) \
93 stride, SIZE, VCOFF(PV)); \
95 for (i = 0; i < SIZE; i += LOOPSIZE) \
97 stride, SIZE, HCOFF(PH)); \
148 #define QPEL_FUNC_SET(OP, SIZE, PH, PV, OPT) \
149 c-> OP ## pixels_tab[2 - SIZE / 8][4 * PV + PH] = OP ## rv40_qpel ##SIZE ## _mc ##PH ##PV ##OPT;