Home | History | Annotate | Download | only in gdx2d

Lines Matching full:shiftop

2252 // butterfly a/b, then shift using "shiftop" by "s" and pack
2253 #define dct_bfly32o(out0,out1, a,b,shiftop,s) \
2257 out0 = vcombine_s16(shiftop(sum_l, s), shiftop(sum_h, s)); \
2258 out1 = vcombine_s16(shiftop(dif_l, s), shiftop(dif_h, s)); \
2261 #define dct_pass(shiftop, shift) \
2295 dct_bfly32o(row0,row7, x0,x7,shiftop,shift); \
2296 dct_bfly32o(row1,row6, x1,x6,shiftop,shift); \
2297 dct_bfly32o(row2,row5, x2,x5,shiftop,shift); \
2298 dct_bfly32o(row3,row4, x3,x4,shiftop,shift); \